UNPKG

threepipe

Version:

A modern 3D viewer framework built on top of three.js, written in TypeScript, designed to make creating high-quality, modular, and extensible 3D experiences on the web simple and enjoyable.

17 lines 518 B
import { AViewerPluginSync, ThreeViewer } from '../../viewer'; /** * Viewer UI Config Plugin * * Just a plugin wrapper over the `viewer.uiConfig * * @category Plugins */ export declare class ViewerUiConfigPlugin extends AViewerPluginSync { static readonly PluginType = "ViewerUiConfigPlugin"; enabled: boolean; serializeWithViewer: boolean; constructor(); onAdded(viewer: ThreeViewer): void; protected _viewer: ThreeViewer | undefined; } //# sourceMappingURL=ViewerUiConfigPlugin.d.ts.map