interface KeyframeTrackJSON {
    interpolation?: InterpolationModes;
    name: string;
    times: number[];
    type: string;
    values: number[];
}

Properties

interpolation?: InterpolationModes
name: string
times: number[]
type: string
values: number[]