@inweb/viewer-visualize
Version:
JavaScript library for rendering CAD and BIM files in a browser using VisualizeJS
11 lines (10 loc) • 342 B
TypeScript
import { Model } from "@inweb/client";
import { IOptions } from "@inweb/viewer-core";
import { Viewer } from "../Viewer";
export declare class BaseLoader {
protected viewer: Viewer;
protected model: Model;
protected options: IOptions;
constructor(viewer: Viewer, model: Model, options: IOptions);
load(): Promise<void>;
}