mirror of
https://github.com/koloml/furbooru-tagging-assistant.git
synced 2025-12-23 23:02:58 +00:00
Converting tag groups store to TS
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user