import { DwgEntity } from './entities'; import { DwgHeader } from './header'; import { DwgImageDefObject, DwgLayoutObject } from './objects'; import { DwgBlockRecordTableEntry, DwgDimStyleTableEntry, DwgLayerTableEntry, DwgLTypeTableEntry, DwgStyleTableEntry, DwgTable, DwgVPortTableEntry } from './tables'; export interface DwgDatabase { tables: { BLOCK_RECORD: DwgTable; DIMSTYLE: DwgTable; LAYER: DwgTable; LTYPE: DwgTable; STYLE: DwgTable; VPORT: DwgTable; }; objects: { IMAGEDEF: DwgImageDefObject[]; LAYOUT: DwgLayoutObject[]; }; header: DwgHeader; /** * All of entities in the model space. */ entities: DwgEntity[]; } //# sourceMappingURL=database.d.ts.map