mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-26 16:52:08 +05:30
11 lines
332 B
TypeScript
11 lines
332 B
TypeScript
import { writable, type Writable } from "svelte/store";
|
|
|
|
export const announcements: Writable<{}> = writable({});
|
|
|
|
export const pubnixUsers: Writable<{}> = writable({});
|
|
|
|
export const blogPosts: Writable<{}> = writable({});
|
|
|
|
export const blogTags: Writable<{}> = writable({});
|
|
|
|
export const blogAuthors: Writable<{}> = writable({}); |