Add slides for Hermes the translator

This commit is contained in:
iacore
2026-05-23 16:00:27 +08:00
parent ef6a9f5cd9
commit d131f231bd
46 changed files with 28724 additions and 0 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;