starry / backend /libs /three /animation /tracks /BooleanKeyframeTrack.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { KeyframeTrack } from './../KeyframeTrack';
export class BooleanKeyframeTrack extends KeyframeTrack {
constructor(name: string, times: any[], values: any[]);
/**
* @default 'bool'
*/
ValueTypeName: string;
}