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[]; }; } //# sourceMappingURL=database.d.ts.map