@types/three
Version: 
TypeScript definitions for three
18 lines (15 loc) • 373 B
TypeScript
export class AnimationObjectGroup {
    constructor(...args: any[]);
    uuid: string;
    stats: {
        bindingsPerObject: number;
        objects: {
            total: number;
            inUse: number;
        };
    };
    readonly isAnimationObjectGroup: true;
    add(...args: any[]): void;
    remove(...args: any[]): void;
    uncache(...args: any[]): void;
}