@rbxts/types 1.0.930 → 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.
Files changed (2) hide show
  1. package/include/lua.d.ts +9 -0
  2. 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.930",
3
+ "version": "1.0.931",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },