@rbxts/types 1.0.868 → 1.0.869

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.
@@ -1863,7 +1863,7 @@ interface FloatCurveKey {
1863
1863
  type FloatCurveKeyConstructor = new (
1864
1864
  time: number,
1865
1865
  value: number,
1866
- interpolation: CastsToEnum<Enum.KeyInterpolationMode>,
1866
+ interpolation?: CastsToEnum<Enum.KeyInterpolationMode>,
1867
1867
  ) => FloatCurveKey;
1868
1868
  declare const FloatCurveKey: FloatCurveKeyConstructor;
1869
1869
 
@@ -2297,7 +2297,7 @@ interface RotationCurveKey {
2297
2297
  type RotationCurveKeyConstructor = new (
2298
2298
  time: number,
2299
2299
  value: CFrame,
2300
- interpolation: CastsToEnum<Enum.KeyInterpolationMode>,
2300
+ interpolation?: CastsToEnum<Enum.KeyInterpolationMode>,
2301
2301
  ) => RotationCurveKey;
2302
2302
  declare const RotationCurveKey: RotationCurveKeyConstructor;
2303
2303
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.868",
3
+ "version": "1.0.869",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },