diff options
Diffstat (limited to 'Timeline/ClientApp/src/app/data/SyncStatusHub.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/data/SyncStatusHub.ts | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Timeline/ClientApp/src/app/data/SyncStatusHub.ts b/Timeline/ClientApp/src/app/data/SyncStatusHub.ts deleted file mode 100644 index ed84f056..00000000 --- a/Timeline/ClientApp/src/app/data/SyncStatusHub.ts +++ /dev/null @@ -1,19 +0,0 @@ -export class SyncStatusHub {
- private map = new Map<string, boolean>();
-
- get(key: string): boolean {
- return this.map.get(key) ?? false;
- }
-
- begin(key: string): void {
- this.map.set(key, true);
- }
-
- end(key: string): void {
- this.map.set(key, false);
- }
-}
-
-export const syncStatusHub = new SyncStatusHub();
-
-export default syncStatusHub;
|