diff options
Diffstat (limited to 'src/stores.ts')
| -rw-r--r-- | src/stores.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stores.ts b/src/stores.ts new file mode 100644 index 0000000..f6c3a9b --- /dev/null +++ b/src/stores.ts @@ -0,0 +1,6 @@ +import { writable } from "svelte/store"; +import type Lab from "./models/Lab"; +import type PeerTeacher from "./models/PeerTeacher"; + +export const ptStore = writable(new Map<number, PeerTeacher>()); +export const labStore = writable(new Map<number, Lab>());
\ No newline at end of file |
