UNPKG

@inweb/viewer-visualize

Version:

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

9 lines (8 loc) 235 B
import { IMarkup } from "@inweb/markup"; /** * Defines the type of the markup core. */ export type MarkupType = "Konva" | "Visualize"; export declare class MarkupFactory { static createMarkup(markupType?: MarkupType): IMarkup; }