You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
427 B
17 lines
427 B
import { readable, writable } from "svelte/store"; |
|
import { FeedType } from "./consts"; |
|
|
|
export let idList = writable<string[]>([]); |
|
|
|
export let alexandriaKinds = readable<number[]>([30040, 30041, 30818]); |
|
|
|
export let feedType = writable<FeedType>(FeedType.StandardRelays); |
|
|
|
export const publicationColumnVisibility = writable({ |
|
toc: false, |
|
blog: true, |
|
main: true, |
|
inner: true, |
|
discussion: false, |
|
editing: false |
|
}); |