gxc-model-base/lib/src/interfaces/index.ts
Andrey Kernichniy 0f8546bc69
All checks were successful
CI / build (push) Successful in 21s
Added first files
2026-03-08 12:31:52 +07:00

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;
}