import { InterpolationModes } from "../../constants.js"; import { KeyframeTrack } from "../KeyframeTrack.js"; /** * A track for numeric keyframe values. */ export class NumberKeyframeTrack extends KeyframeTrack { /** * Constructs a new number keyframe track. * * @param {string} name - The keyframe track's name. * @param {Array} times - A list of keyframe times. * @param {Array} values - A list of keyframe values. * @param {(InterpolateLinear|InterpolateDiscrete|InterpolateSmooth)} [interpolation] - The interpolation type. */ constructor(name: string, times: ArrayLike, values: ArrayLike, interpolation?: InterpolationModes); }