UNPKG

@surveycake/utils

Version:

SurveyCake Javascript Utils

12 lines (11 loc) 269 B
/** * @module dom */ /** * interface of options of insertScript. */ export interface InsertScriptOptions { async?: boolean; defer?: boolean; } export declare function insertScript(id: string, src: string, options?: InsertScriptOptions): boolean;