From c0b4d64e491a70ad0aace8d3cb7ffbb94fdbedc9 Mon Sep 17 00:00:00 2001 From: Neshura Date: Sun, 13 Aug 2023 03:24:28 +0200 Subject: [PATCH] Chellaris Data Store --- src/lib/stores/ChellarisData.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/lib/stores/ChellarisData.ts diff --git a/src/lib/stores/ChellarisData.ts b/src/lib/stores/ChellarisData.ts new file mode 100644 index 0000000..0729c9b --- /dev/null +++ b/src/lib/stores/ChellarisData.ts @@ -0,0 +1,6 @@ +import { writable, type Writable } from "svelte/store"; +import type { ChellarisInfo } from '../types/chellaris'; + +const ChellarisDataStore: Writable = writable(); + +export default ChellarisDataStore; \ No newline at end of file