rate/core/src/entity.ts

8 lines
131 B
TypeScript
Raw Normal View History

2022-10-11 10:18:12 +00:00
export type EntityInfo = {
2022-09-23 22:14:51 +00:00
uuid: string;
createdAt: Date;
updatedAt: Date;
};
2022-10-11 10:18:12 +00:00
export type EntityCtor = Partial<EntityInfo>;