@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 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
  /**
@@ -3149,6 +3149,7 @@ interface CheckableTypes extends CheckablePrimitives {
3149
3149
  Rect: Rect;
3150
3150
  Region3: Region3;
3151
3151
  Region3int16: Region3int16;
3152
+ Secret: Secret;
3152
3153
  TweenInfo: TweenInfo;
3153
3154
  UDim: UDim;
3154
3155
  UDim2: UDim2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.929",
3
+ "version": "1.0.931",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },