UNPKG

359 BTypeScriptView Raw
1import { InterpolationModes } from "../../constants.js";
2import { KeyframeTrack } from "../KeyframeTrack.js";
3
4export class NumberKeyframeTrack extends KeyframeTrack {
5 constructor(name: string, times: ArrayLike<number>, values: ArrayLike<number>, interpolation?: InterpolationModes);
6
7 /**
8 * @default 'number'
9 */
10 ValueTypeName: string;
11}