Chellaris Data Store
This commit is contained in:
parent
babc937686
commit
c0b4d64e49
1 changed files with 6 additions and 0 deletions
6
src/lib/stores/ChellarisData.ts
Normal file
6
src/lib/stores/ChellarisData.ts
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
import { writable, type Writable } from "svelte/store";
|
||||||
|
import type { ChellarisInfo } from '../types/chellaris';
|
||||||
|
|
||||||
|
const ChellarisDataStore: Writable<ChellarisInfo> = writable();
|
||||||
|
|
||||||
|
export default ChellarisDataStore;
|
Reference in a new issue