vickyliin пре 4 година
родитељ
комит
daea4eb3ed
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      src/animation/KeyframeTrack.d.ts

+ 2 - 2
src/animation/KeyframeTrack.d.ts

@@ -13,8 +13,8 @@ export class KeyframeTrack {
 	 */
 	constructor(
 		name: string,
-		times: Record<number, any>,
-		values: Record<number, any>,
+		times: ArrayLike<any>,
+		values: ArrayLike<any>,
 		interpolation?: InterpolationModes
 	);