generated from gxc-solutions/gxc-template-repo
This commit is contained in:
parent
41a325f5e1
commit
0f8546bc69
10 changed files with 149 additions and 1 deletions
|
|
@ -0,0 +1,8 @@
|
|||
export type ModelConstructor = new (...args: any[]) => IModel;
|
||||
|
||||
export type TypeOfModel = "collection";
|
||||
|
||||
export interface IModel {
|
||||
readonly id: string;
|
||||
readonly type: TypeOfModel;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue