导出了Schema供外层引用

This commit is contained in:
Xu Chang 2023-04-10 15:28:21 +08:00
parent 54922935a6
commit 1406effce5
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ export interface EntityShape {
$$updateAt$$: number | Date;
$$deleteAt$$?: number | Date | null;
}
interface GeneralEntityShape extends EntityShape {
export interface GeneralEntityShape extends EntityShape {
[K: string]: any;
}
export declare type MakeAction<A extends string> = A;

View File

@ -81,7 +81,7 @@ export interface EntityShape {
$$deleteAt$$?: number | Date | null;
}
interface GeneralEntityShape extends EntityShape {
export interface GeneralEntityShape extends EntityShape {
[K: string]: any;
}