TkAstral3D/packages/sdk/lib/dxf/parser/index.ts
2025-10-04 23:36:07 +08:00

23 lines
1.3 KiB
TypeScript

import DxfParser from './DxfParser';
export { default as DxfParser } from './DxfParser';
export type { IDxf, IBlock, ILayerTypesTable, ILayersTable, ITables, IViewPortTable, IBaseTable, ILayer, ILayerTableDefinition, ILineType, ILineTypeTableDefinition, ITable, ITableDefinitions, IViewPort, IViewPortTableDefinition } from './DxfParser';
export type { IEntity, IPoint } from './entities/geomtry';
export type { I3DfaceEntity } from './entities/3dface';
export type { IArcEntity } from './entities/arc';
export type { IAttdefEntity } from './entities/attdef';
export type { ICircleEntity } from './entities/circle';
export type { IDimensionEntity } from './entities/dimension';
export type { IEllipseEntity } from './entities/ellipse';
export type { IInsertEntity } from './entities/insert';
export type { ILineEntity } from './entities/line';
export type { ILwpolylineEntity } from './entities/lwpolyline';
export type { IMtextEntity } from './entities/mtext';
export type { IPointEntity } from './entities/point';
export type { IPolylineEntity } from './entities/polyline';
export type { ISolidEntity } from './entities/solid';
export type { ISplineEntity } from './entities/spline';
export type { ITextEntity } from './entities/text';
export type { IVertexEntity } from './entities/vertex';
export default DxfParser