correct type

This commit is contained in:
Niels Lyngsø
2022-06-01 10:58:16 +02:00
parent f995539f0c
commit f19ef63d6d

View File

@@ -11,7 +11,7 @@ export type UmbExtensionManifestBase = {
//type: string;
alias: string;
name: string;
js?: string | (() => Promise<UmbExtensionManifestJSModel>);
js?: string | (() => Promise<unknown>);
elementName?: string;
//meta: undefined;
}