rbxts-pako/patches/@rbxts%2Ftypes@1.0.813.patch
Erica Marigold 622aa75ae3
refactor: make library lune compatible
* 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
2024-12-26 11:56:00 +00:00

17 lines
1.4 KiB
Diff
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 instances 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 Robloxs 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;