Added first files
All checks were successful
CI / build (push) Successful in 21s

This commit is contained in:
Andrey Kernichniy 2026-03-08 12:31:52 +07:00
parent 41a325f5e1
commit 0f8546bc69
10 changed files with 149 additions and 1 deletions

View file

@ -0,0 +1,8 @@
export type ModelConstructor = new (...args: any[]) => IModel;
export type TypeOfModel = "collection";
export interface IModel {
readonly id: string;
readonly type: TypeOfModel;
}