UNPKG

threepipe

Version:

A 3D viewer framework built on top of three.js in TypeScript with a focus on quality rendering, modularity and extensibility.

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