mirror of
https://github.com/0x5eal/rbxts-pako.git
synced 2025-04-03 02:10:57 +01:00
* Moved over to requires with type assertion to remove dependence on `TS` runtime which is roblox exclusive * Imports are now exclusively used for types, which are stripped at compile-time * Renamed `buff` utility to `typedArrays` * Added patch for roblox-ts global types to modify `require` signature to behave like ES5 requires
17 lines
1.4 KiB
Diff
17 lines
1.4 KiB
Diff
diff --git a/include/roblox.d.ts b/include/roblox.d.ts
|
||
index 9ca6669431ba395dbe25552c447fdd3f3b00825d..220aab8b642727dc6ed3959fe514445ff8190dd2 100644
|
||
--- a/include/roblox.d.ts
|
||
+++ b/include/roblox.d.ts
|
||
@@ -2676,10 +2676,8 @@ declare function elapsedTime(): number;
|
||
* The number reflects the current heap consumption from the operating system perspective, which fluctuates over time as garbage collector frees objects.
|
||
*/
|
||
declare function gcinfo(): number;
|
||
-/** Runs the supplied ModuleScript if it has not been run already, and returns what the ModuleScript returned (in both cases).
|
||
-
|
||
-If the ModuleScript the user wants to use has been uploaded to Roblox (with the instance’s name being ‘MainModule’), it can be loaded by using the require function on the asset ID of the ModuleScript, though only on the server. */
|
||
-declare function require(moduleScript: ModuleScript | number): unknown;
|
||
+/** Requires a module with a path relative to the current module's path. */
|
||
+declare function require(id: string): any;
|
||
/** Runs the specified callback function in a separate thread, without yielding the current thread.
|
||
The function will be executed the next time Roblox’s Task Scheduler runs an update cycle. This delay will take at least 29 milliseconds but can arbitrarily take longer, depending on the target framerate and various throttling conditions. */
|
||
declare function spawn(callback: DelayedCallback): void;
|