feat: 添加类型注释

This commit is contained in:
2025-01-20 16:05:50 +08:00
parent e5a4381b04
commit 60724a923e
27 changed files with 1364 additions and 249 deletions
+9
View File
@@ -0,0 +1,9 @@
export default class DBHelper {
static baseDB: any;
static resourceDB: any;
static backupDB: any;
static logDB: any;
static init(): Promise<void>;
static getBackupDb(): any;
static getLogDb(): any;
}