aboutsummaryrefslogtreecommitdiff
path: root/src/lib/stores.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/stores.ts')
-rw-r--r--src/lib/stores.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/stores.ts b/src/lib/stores.ts
index b95d9c5..6a36ea4 100644
--- a/src/lib/stores.ts
+++ b/src/lib/stores.ts
@@ -1,6 +1,8 @@
-import { writable } from "svelte/store";
+import { readable, writable } from "svelte/store";
export let idList = writable<string[]>([]);
+export let alexandriaKinds = readable<number[]>([30040, 30041]);
+
export const isLeftMenuMenuInUse = writable(false);
export const showLeftMenu = writable(false);