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, 2 insertions, 2 deletions
diff --git a/src/lib/stores.ts b/src/lib/stores.ts
index 6a36ea4..19a4857 100644
--- a/src/lib/stores.ts
+++ b/src/lib/stores.ts
@@ -1,8 +1,8 @@
import { readable, writable } from "svelte/store";
+import { FeedType } from "./consts";
export let idList = writable<string[]>([]);
export let alexandriaKinds = readable<number[]>([30040, 30041]);
-export const isLeftMenuMenuInUse = writable(false);
-export const showLeftMenu = writable(false);
+export let feedType = writable<FeedType>(FeedType.Relays);