feat(core): loading ui for favorite and organize (#7700)

This commit is contained in:
EYHN
2024-08-02 07:17:01 +00:00
parent 94c5effdd5
commit e54be7dc02
15 changed files with 179 additions and 36 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import { validators } from './validators';
export class ORMClient {
static hooksMap: Map<string, Hook<any>[]> = new Map();
private readonly tables = new Map<string, Table<any>>();
readonly tables = new Map<string, Table<any>>();
constructor(
protected readonly db: DBSchemaBuilder,
protected readonly adapter: DBAdapter