Chellaris Data Store

This commit is contained in:
Neshura 2023-08-13 03:24:28 +02:00
parent babc937686
commit c0b4d64e49
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View 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;