chore(icon_pack): switch schema to support multiple terms per icon

This commit is contained in:
Elian Doran
2025-12-26 19:25:31 +02:00
parent e2f6f8a4e4
commit 254511bfbf
4 changed files with 29 additions and 11 deletions

View File

@@ -1,3 +1,5 @@
import { IconRegistry } from "@triliumnext/commons";
import appContext, { AppContext } from "./components/app_context";
import type FNote from "./entities/fnote";
import type { PrintReport } from "./print";
@@ -46,6 +48,7 @@ interface CustomGlobals {
linter: typeof lint;
hasNativeTitleBar: boolean;
isRtl: boolean;
iconRegistry: IconRegistry;
}
type RequireMethod = (moduleName: string) => any;