mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-04-30 11:29:29 +08:00
4 lines
196 B
TypeScript
4 lines
196 B
TypeScript
import type { Writable } from 'svelte/store'
|
|
import { writable } from 'svelte/store'
|
|
export const posts: Writable<Urara.Post[]> = writable([])
|
|
export const tags: Writable<string[]> = writable([])
|