Move files

This commit is contained in:
iacore
2026-06-28 11:44:47 +08:00
parent 3d17168557
commit ff2eb8539c
79 changed files with 0 additions and 89036 deletions
+8
View File
@@ -0,0 +1,8 @@
/**
* 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;