Files
translation-files/other/hermes-presentation/dist/utils/loader.d.ts
T
2026-06-28 11:44:47 +08:00

9 lines
311 B
TypeScript

/**
* Loads a JavaScript file from the given URL and executes it.
*
* @param {string} url Address of the .js file to load
* @param {function} callback Method to invoke when the script
* has loaded and executed
*/
export declare const loadScript: (url: string, callback?: (error?: Error) => void) => void;