import type { Icon } from "./Icon.js"; /** * Here specific/custom icons for widgets can be stored. */ export type CustomIconPackEntry = { /** * we recomend following the widget id + icon name to avoid collisions * e.g. "@username/widgetid::iconname" but you can use whatever you want */ key: string; /** * Value is the path to the icon relative to the icon pack folder. */ icon: Icon; }; //# sourceMappingURL=CustomIconPackEntry.d.ts.map