File size: 142 Bytes
4e0a699
 
 
1
2
3
4
import { writable } from 'svelte/store';
export const loadingState = writable<string>('');
export const isLoading = writable<boolean>(false);