server-ts: cls.js -> cls.ts

This commit is contained in:
Elian Doran
2024-02-16 21:16:35 +02:00
parent 981221d599
commit 78f631373b
2 changed files with 24 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
export interface EntityChange {
id?: string;
entityName: string;
entityId: string;
hash: string;
utcDateChanged: string;
isSynced: boolean | 1 | 0;
isErased: boolean | 1 | 0;
componentId?: string | null;
changeId?: string | null;
instanceId?: string | null;
}