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

Added initial version of tag group entity with tags & prefixes

This commit is contained in:
2024-12-02 03:12:09 +04:00
parent d5f6ed1a3e
commit e523ce4468
3 changed files with 30 additions and 0 deletions

2
src/app.d.ts vendored
View File

@@ -1,6 +1,7 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
import MaintenanceProfile from "$entities/MaintenanceProfile.ts";
import type TagGroup from "$entities/TagGroup.ts";
declare global {
namespace App {
@@ -24,6 +25,7 @@ declare global {
interface EntityNamesMap {
profiles: MaintenanceProfile;
groups: TagGroup;
}
}
}