server-ts: Port ws service & dependencies

This commit is contained in:
Elian Doran
2024-02-17 01:51:47 +02:00
parent 4b1d2c6bad
commit cf18e61a33
11 changed files with 108 additions and 53 deletions

View File

@@ -1,7 +1,10 @@
export interface EntityChange {
id?: number | null;
noteId?: string;
entityName: string;
entityId: string;
entity?: any;
positions?: Record<string, string>;
hash: string;
utcDateChanged: string;
isSynced: boolean | 1 | 0;