File size: 188 Bytes
a805a6c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { writable } from "svelte/store";

export const requestStore = writable<{
  loading: boolean;
  data: Record<string, unknown> | null;
} | null>({
  loading: false,
  data: null
});