Removed old scripted types

This commit is contained in:
2026-07-10 13:24:21 -05:00
parent 470c0eba7a
commit 28754ffbf2
37 changed files with 0 additions and 1483 deletions
-46
View File
@@ -1,46 +0,0 @@
/**
* Copyright (c) 2026 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
/**
* CommonJS-style module loader.
*
* Modules are cached after their first load. Subsequent calls with the same
* resolved path return the cached exports without re-executing the file.
*
* Path rules: the string is passed verbatim to the asset loader and resolved
* from the archive root. The `.js` extension must be included explicitly.
*
* @example
* const NPC = require('./entities/NPC');
*/
declare function require(path: string): any;
/**
* Asynchronous module loader. Loads the module at `path` in the background
* and returns a Promise that resolves to the module's `exports`.
*
* If the module is already cached it resolves immediately. On load failure
* the Promise is rejected.
*
* Path rules are identical to `require`.
*
* @example
* const NPC = await requireAsync('./entities/NPC');
*/
declare function requireAsync(path: string): Promise<any>;
/**
* The module object for the currently executing script.
* Assign `module.exports` to control what `require()` returns to callers.
*/
declare var module: { exports: any };
/**
* Shorthand for `module.exports`. Direct assignment (`exports = ...`) does
* NOT update `module.exports`; use `module.exports = ...` for that.
*/
declare var exports: any;