web3d / node_modules /three /src /animation /tracks /StringKeyframeTrack.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
280 Bytes
import { KeyframeTrack } from './../KeyframeTrack';
import { InterpolationModes } from '../../constants';
export class StringKeyframeTrack extends KeyframeTrack {
constructor(
name: string,
times: any[],
values: any[],
interpolation?: InterpolationModes
);
}