@itwin/core-frontend
Version:
iTwin.js frontend components
12 lines • 428 B
TypeScript
/**
* Imports and executes a bundled javascript (esm) module.
* Used by remote and service Extensions.
* Throws an error if no function is found to execute.
* Looks for a function in the following order:
* - the module itself.
* - the module's main export.
* - the module's default export.
* @internal
*/
export declare function loadScript(jsUrl: string): Promise<any>;
//# sourceMappingURL=ExtensionLoadScript.d.ts.map