UNPKG

metawrite

Version:

Appwrite SDK with ready to go components for Svelte / SvelteKit

7 lines (6 loc) 269 B
import { writable } from 'svelte/store'; import { UserStore } from './stores/_user'; import { DocumentsStore } from './stores/_documents'; export const active = writable(false); export const currentUser = new UserStore(); export const documents = new DocumentsStore();