Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 334 Bytes
f05d33c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { writable } from "svelte/store";
import type { CommunityCard } from "$lib/type";
interface Props {
open: boolean,
gallery: CommunityCard | undefined,
previous?: string,
next?: string,
}
export const galleryStore = writable<Props>({
open: false,
gallery: undefined,
previous: undefined,
next: undefined,
});
|