UNPKG

@comerick/model-viewer

Version:

Easily display interactive 3D models on the web and in AR!

11 lines (10 loc) 498 B
import ModelViewerElementBase from '../model-viewer-base.js'; import { Constructor } from '../utilities.js'; export declare const AUTO_ROTATE_DELAY_DEFAULT = 3000; export declare interface StagingInterface { autoRotate: boolean; autoRotateDelay: number; readonly turntableRotation: number; resetTurntableRotation(theta?: number): void; } export declare const StagingMixin: <T extends Constructor<ModelViewerElementBase>>(ModelViewerElement: T) => Constructor<StagingInterface> & T;