UNPKG

@mlightcad/libredwg-web

Version:

A DWG/DXF JavaScript parser based on libredwg

18 lines 352 B
import { DwgEntity } from './entity'; export interface DwgOleFrameEntity extends DwgEntity { /** * Entity type */ type: 'OLEFRAME'; flag: number; mode: number; /** * Length of binary data */ dataSize: number; /** * Binary data */ binaryData: string; } //# sourceMappingURL=oleframe.d.ts.map