1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-24 07:12:57 +00:00

Converting tag groups store to TS

This commit is contained in:
2025-02-16 16:09:16 +04:00
parent 5392a17db5
commit 8a3ef6b049

View File

@@ -1,8 +1,7 @@
import { writable } from "svelte/store";
import { type Writable, writable } from "svelte/store";
import TagGroup from "$entities/TagGroup";
/** @type {import('svelte/store').Writable<TagGroup[]>} */
export const tagGroupsStore = writable([]);
export const tagGroupsStore: Writable<TagGroup[]> = writable([]);
TagGroup
.readAll()