vim-webgl-component
Version:
A demonstration app built on top of the vim-webgl-viewer
14 lines (13 loc) • 390 B
TypeScript
/**
* @module viw-webgl-component
*/
import * as VIM from 'vim-webgl-viewer';
import * as BIM from 'vim-format';
export type AugmentedElement = BIM.IElement & {
bimDocumentName: string;
categoryName: string;
familyTypeName: string;
levelName: string;
worksetName: string;
};
export declare function getElements(vim: VIM.Vim): Promise<AugmentedElement[]>;