1 | export interface ILoadScriptOptions {
|
2 | version?: string;
|
3 | url?: string;
|
4 | css?: string | boolean;
|
5 | insertCssBefore?: string;
|
6 | }
|
7 | export declare function setDefaultOptions(options?: ILoadScriptOptions): void;
|
8 | export declare function getScript(): HTMLScriptElement;
|
9 | export declare function isLoaded(): any;
|
10 | export declare function loadScript(options?: ILoadScriptOptions): Promise<HTMLScriptElement>;
|