JS: Support all builtin icons in new gui/icon module

This commit is contained in:
Willy-JL
2025-02-20 03:19:43 +00:00
parent 72281d9666
commit 1a4a940b74
2 changed files with 7 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
export type BuiltinIcon = "DolphinWait_59x54" | "js_script_10px";
export type BuiltinIcon = string;
export type IconData = symbol & { "__tag__": "icon" };
// introducing a nominal type in a hacky way; the `__tag__` property doesn't really exist.