From fdc1edf230bf77a0f933329dc9c4913547601284 Mon Sep 17 00:00:00 2001 From: Atsushi Date: Tue, 26 Nov 2019 23:41:54 +0900 Subject: [PATCH] Update for KeyframeTrack.d.ts --- src/animation/KeyframeTrack.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/animation/KeyframeTrack.d.ts b/src/animation/KeyframeTrack.d.ts index eab8ce6b16..19257e1708 100644 --- a/src/animation/KeyframeTrack.d.ts +++ b/src/animation/KeyframeTrack.d.ts @@ -26,7 +26,7 @@ export class KeyframeTrack { InterpolantFactoryMethodLinear( result: any ): LinearInterpolant; InterpolantFactoryMethodSmooth( result: any ): CubicInterpolant; - setInterpolation( interpolation: InterpolationModes ): void; + setInterpolation( interpolation: InterpolationModes ): KeyframeTrack; getInterpolation(): InterpolationModes; getValuesize(): number; @@ -36,8 +36,8 @@ export class KeyframeTrack { trim( startTime: number, endTime: number ): KeyframeTrack; validate(): boolean; optimize(): KeyframeTrack; + clone(): KeyframeTrack; - static parse( json: any ): KeyframeTrack; static toJSON( track: KeyframeTrack ): any; } -- GitLab