@rbxts/types 1.0.949 → 1.0.951

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.
@@ -81,3 +81,16 @@ declare interface Vector3int16 {
81
81
  /** macro for Vector2int16 / Vector2int16 */
82
82
  div(this: Vector3int16, v3: Vector3int16): Vector3int16;
83
83
  }
84
+
85
+ declare interface vector {
86
+ /** macro for vector + vector */
87
+ add(this: vector, v: vector): vector;
88
+ /** macro for vector - vector */
89
+ sub(this: vector, v: vector): vector;
90
+ /** macro for vector * vector | number */
91
+ mul(this: vector, other: vector | number): vector;
92
+ /** macro for vector / vector | number */
93
+ div(this: vector, other: vector | number): vector;
94
+ /** macro for vector // vector | number */
95
+ idiv(this: vector, other: vector | number): vector;
96
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.949",
3
+ "version": "1.0.951",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },