UNPKG

@inweb/viewer-visualize

Version:

JavaScript library for rendering CAD and BIM files in a browser using VisualizeJS

11 lines (10 loc) 490 B
import { Model } from "@inweb/client"; import { IOptions } from "@inweb/viewer-core"; import { TCSLoader } from "./TCSLoader"; import { VsfXLoader } from "./VsfXLoader"; import { VsfXStreamingLoader } from "./VsfXStreamingLoader"; import { VsfXPartialLoader } from "./VsfXPartialLoader"; import { Viewer } from "../Viewer"; export declare class LoaderFactory { create(viewer: Viewer, model: Model, options: IOptions): TCSLoader | VsfXLoader | VsfXStreamingLoader | VsfXPartialLoader; }