@rbxts/types 1.0.929 → 1.0.931
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/lua.d.ts +9 -0
- package/include/roblox.d.ts +1 -0
- package/package.json +1 -1
package/include/lua.d.ts
CHANGED
|
@@ -567,6 +567,15 @@ declare namespace math {
|
|
|
567
567
|
|
|
568
568
|
/** Returns the hyperbolic tangent of x. */
|
|
569
569
|
function tanh(n: number): number;
|
|
570
|
+
|
|
571
|
+
/** Returns true if x is NaN, otherwise false */
|
|
572
|
+
function isnan(x: number): boolean;
|
|
573
|
+
|
|
574
|
+
/** Returns true if x is infinite, otherwise false */
|
|
575
|
+
function isinf(x: number): boolean;
|
|
576
|
+
|
|
577
|
+
/** Returns true if x is a finite number (non Nan, non infinite), otherwise false */
|
|
578
|
+
function isfinite(x: number): boolean;
|
|
570
579
|
}
|
|
571
580
|
|
|
572
581
|
/**
|
package/include/roblox.d.ts
CHANGED