We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51fbb5a commit f8a2528Copy full SHA for f8a2528
src/packages/core/icon-registry/types.ts
@@ -1,6 +1,8 @@
1
-export interface UmbIconDefinition {
+import type { JsLoaderProperty } from '@umbraco-cms/backoffice/extension-api';
2
+
3
+export interface UmbIconDefinition<JsType extends object = object> {
4
name: string;
- path: string;
5
+ path: JsLoaderProperty<JsType>;
6
legacy?: boolean;
7
}
8
0 commit comments