@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.
- package/include/roblox.d.ts +2 -2
- package/package.json +1 -1
package/include/roblox.d.ts
CHANGED
|
@@ -1863,7 +1863,7 @@ interface FloatCurveKey {
|
|
|
1863
1863
|
type FloatCurveKeyConstructor = new (
|
|
1864
1864
|
time: number,
|
|
1865
1865
|
value: number,
|
|
1866
|
-
interpolation
|
|
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
|
|
2300
|
+
interpolation?: CastsToEnum<Enum.KeyInterpolationMode>,
|
|
2301
2301
|
) => RotationCurveKey;
|
|
2302
2302
|
declare const RotationCurveKey: RotationCurveKeyConstructor;
|
|
2303
2303
|
|