machineuser
version control dist & node_modules...
263e0f2
raw
history blame contribute delete
280 Bytes
import { KeyframeTrack } from './../KeyframeTrack';
import { InterpolationModes } from '../../constants';
export class VectorKeyframeTrack extends KeyframeTrack {
constructor(
name: string,
times: any[],
values: any[],
interpolation?: InterpolationModes
);
}