generated from gxc-solutions/gxc-template-repo
8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
export type ModelConstructor = new (...args: any[]) => IModel;
|
|
|
|
export type TypeOfModel = "collection";
|
|
|
|
export interface IModel {
|
|
readonly id: string;
|
|
readonly type: TypeOfModel;
|
|
}
|