dxf-json 0.10.1 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Readme.md +67 -18
- package/dist/cjs/bundle.cjs +3 -0
- package/dist/cjs/types/consts/block.d.ts.map +1 -0
- package/dist/cjs/types/consts/color.d.ts.map +1 -0
- package/dist/cjs/types/consts/config.d.ts.map +1 -0
- package/dist/cjs/types/consts/dimension.d.ts.map +1 -0
- package/dist/cjs/types/consts/hatch.d.ts.map +1 -0
- package/dist/cjs/types/consts/header.d.ts +10 -0
- package/dist/cjs/types/consts/header.d.ts.map +1 -0
- package/dist/cjs/types/consts/lineweight.d.ts.map +1 -0
- package/dist/cjs/types/consts/measurement.d.ts.map +1 -0
- package/dist/cjs/types/consts/obscuredLineTypes.d.ts.map +1 -0
- package/dist/cjs/types/consts/plotStyleType.d.ts.map +1 -0
- package/dist/cjs/types/consts/viewport.d.ts +58 -0
- package/dist/cjs/types/consts/viewport.d.ts.map +1 -0
- package/dist/cjs/types/debug.d.ts.map +1 -0
- package/dist/cjs/types/index.d.ts +174 -0
- package/dist/cjs/types/index.d.ts.map +1 -0
- package/dist/cjs/types/parser/AutoCadColorIndex.d.ts.map +1 -0
- package/dist/cjs/types/parser/DxfArrayScanner.d.ts.map +1 -0
- package/dist/cjs/types/parser/DxfParser.d.ts +29 -0
- package/dist/cjs/types/parser/DxfParser.d.ts.map +1 -0
- package/dist/cjs/types/parser/ParseHelpers.d.ts +8 -0
- package/dist/cjs/types/parser/ParseHelpers.d.ts.map +1 -0
- package/dist/cjs/types/parser/blocks/parser.d.ts +4 -0
- package/dist/cjs/types/parser/blocks/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/blocks/types.d.ts +15 -0
- package/dist/cjs/types/parser/blocks/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/classes/consts.d.ts +18 -0
- package/dist/cjs/types/parser/classes/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/classes/parser.d.ts +6 -0
- package/dist/cjs/types/parser/classes/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/classes/types.d.ts +60 -0
- package/dist/cjs/types/parser/classes/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/arc/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc/types.d.ts +13 -0
- package/dist/cjs/types/parser/entities/arc/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc_dimension/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc_dimension/parser.d.ts +9 -0
- package/dist/cjs/types/parser/entities/arc_dimension/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/arc_dimension/types.d.ts +99 -0
- package/dist/cjs/types/parser/entities/arc_dimension/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attdef/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attdef/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/attdef/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attdef/types.d.ts +18 -0
- package/dist/cjs/types/parser/entities/attdef/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attribute/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/attribute/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/attribute/types.d.ts +31 -0
- package/dist/cjs/types/parser/entities/attribute/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/body/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/body/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/body/types.d.ts +10 -0
- package/dist/cjs/types/parser/entities/body/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/circle/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/circle/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/circle/types.d.ts +11 -0
- package/dist/cjs/types/parser/entities/circle/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/consts.d.ts +5 -0
- package/dist/cjs/types/parser/entities/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/dimension/parser.d.ts +14 -0
- package/dist/cjs/types/parser/entities/dimension/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/dimension/types.d.ts +202 -0
- package/dist/cjs/types/parser/entities/dimension/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/ellipse/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/ellipse/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/ellipse/types.d.ts +13 -0
- package/dist/cjs/types/parser/entities/ellipse/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/face/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/face/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/face/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/face/types.d.ts +8 -0
- package/dist/cjs/types/parser/entities/face/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/edge.d.ts +7 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/parser.d.ts +5 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +3 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/shared.d.ts +3 -0
- package/dist/cjs/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/hatch/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/patternData.d.ts +3 -0
- package/dist/cjs/types/parser/entities/hatch/patternData.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/types/boundaryPath.d.ts +60 -0
- package/dist/cjs/types/parser/entities/hatch/types/boundaryPath.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/types/definitionLine.d.ts +9 -0
- package/dist/cjs/types/parser/entities/hatch/types/definitionLine.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/hatch/types/hatch.d.ts +39 -0
- package/dist/cjs/types/parser/entities/hatch/types/hatch.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/image/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/image/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/image/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/image/types.d.ts +55 -0
- package/dist/cjs/types/parser/entities/image/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/insert/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/insert/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/insert/types.d.ts +19 -0
- package/dist/cjs/types/parser/entities/insert/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/leader/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/leader/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/leader/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/leader/types.d.ts +24 -0
- package/dist/cjs/types/parser/entities/leader/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/light/consts.d.ts +11 -0
- package/dist/cjs/types/parser/entities/light/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/light/parser.d.ts +10 -0
- package/dist/cjs/types/parser/entities/light/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/light/types.d.ts +69 -0
- package/dist/cjs/types/parser/entities/light/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/line/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/line/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/line/types.d.ts +11 -0
- package/dist/cjs/types/parser/entities/line/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/lwpolyline/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/lwpolyline/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/lwpolyline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/lwpolyline/types.d.ts +20 -0
- package/dist/cjs/types/parser/entities/lwpolyline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mesh/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/mesh/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mesh/types.d.ts +23 -0
- package/dist/cjs/types/parser/entities/mesh/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mline/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mline/parser.d.ts +12 -0
- package/dist/cjs/types/parser/entities/mline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mline/types.d.ts +151 -0
- package/dist/cjs/types/parser/entities/mline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mtext/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mtext/parser.d.ts +10 -0
- package/dist/cjs/types/parser/entities/mtext/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/mtext/types.d.ts +34 -0
- package/dist/cjs/types/parser/entities/mtext/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/multileader/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/multileader/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/multileader/types.d.ts +35 -0
- package/dist/cjs/types/parser/entities/multileader/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/point/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/point/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/point/types.d.ts +10 -0
- package/dist/cjs/types/parser/entities/point/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/polyline/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/polyline/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/polyline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/polyline/types.d.ts +20 -0
- package/dist/cjs/types/parser/entities/polyline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/ray/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/ray/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/ray/types.d.ts +11 -0
- package/dist/cjs/types/parser/entities/ray/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/region/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/region/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/region/types.d.ts +10 -0
- package/dist/cjs/types/parser/entities/region/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/section/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/section/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/section/types.d.ts +20 -0
- package/dist/cjs/types/parser/entities/section/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/shared.d.ts +82 -0
- package/dist/cjs/types/parser/entities/shared.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/solid/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/solid/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/solid/types.d.ts +10 -0
- package/dist/cjs/types/parser/entities/solid/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/solid3d/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/solid3d/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/solid3d/types.d.ts +12 -0
- package/dist/cjs/types/parser/entities/solid3d/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/spline/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/spline/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/spline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/spline/types.d.ts +22 -0
- package/dist/cjs/types/parser/entities/spline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/sun/parser.d.ts +10 -0
- package/dist/cjs/types/parser/entities/sun/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/sun/types.d.ts +80 -0
- package/dist/cjs/types/parser/entities/sun/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/text/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/text/parser.d.ts +26 -0
- package/dist/cjs/types/parser/entities/text/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/text/types.d.ts +21 -0
- package/dist/cjs/types/parser/entities/text/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/tolerance/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/tolerance/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/tolerance/types.d.ts +17 -0
- package/dist/cjs/types/parser/entities/tolerance/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/vertex/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/vertex/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/vertex/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/vertex/types.d.ts +17 -0
- package/dist/cjs/types/parser/entities/vertex/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/viewport/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/viewport/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/viewport/types.d.ts +187 -0
- package/dist/cjs/types/parser/entities/viewport/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/wipeout/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/wipeout/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/wipeout/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/wipeout/types.d.ts +38 -0
- package/dist/cjs/types/parser/entities/wipeout/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/xline/parser.d.ts +8 -0
- package/dist/cjs/types/parser/entities/xline/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/xline/types.d.ts +9 -0
- package/dist/cjs/types/parser/entities/xline/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/getAcadColor.d.ts +8 -0
- package/dist/cjs/types/parser/getAcadColor.d.ts.map +1 -0
- package/dist/cjs/types/parser/header/parser.d.ts +3 -0
- package/dist/cjs/types/parser/header/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/dictionary/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/dictionary/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/dictionary/types.d.ts +13 -0
- package/dist/cjs/types/parser/objects/dictionary/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layout/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layout/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/layout/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layout/types.d.ts +25 -0
- package/dist/cjs/types/parser/objects/layout/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/parser.d.ts +5 -0
- package/dist/cjs/types/parser/objects/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/plotSettings/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/plotSettings/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/plotSettings/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/plotSettings/types.d.ts +37 -0
- package/dist/cjs/types/parser/objects/plotSettings/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/shared.d.ts +3 -0
- package/dist/cjs/types/parser/objects/shared.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/spatial_filter/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/spatial_filter/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/spatial_filter/types.d.ts +39 -0
- package/dist/cjs/types/parser/objects/spatial_filter/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/types.d.ts +29 -0
- package/dist/cjs/types/parser/objects/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/xrecord/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/xrecord/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/xrecord/types.d.ts +16 -0
- package/dist/cjs/types/parser/objects/xrecord/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/ensureHandle.d.ts +2 -0
- package/dist/cjs/types/parser/shared/ensureHandle.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/extensions/parser.d.ts +4 -0
- package/dist/cjs/types/parser/shared/extensions/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/isMatched.d.ts +7 -0
- package/dist/cjs/types/parser/shared/isMatched.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/parsePoint.d.ts +8 -0
- package/dist/cjs/types/parser/shared/parsePoint.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/parserGenerator.d.ts +50 -0
- package/dist/cjs/types/parser/shared/parserGenerator.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/xdata/parser.d.ts +6 -0
- package/dist/cjs/types/parser/shared/xdata/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/xdata/types.d.ts +16 -0
- package/dist/cjs/types/parser/shared/xdata/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/appId/parser.d.ts +4 -0
- package/dist/cjs/types/parser/tables/appId/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/appId/types.d.ts +20 -0
- package/dist/cjs/types/parser/tables/appId/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/blockRecord/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/blockRecord/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/blockRecord/types.d.ts +11 -0
- package/dist/cjs/types/parser/tables/blockRecord/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/consts.d.ts +38 -0
- package/dist/cjs/types/parser/tables/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/dimStyle/consts.d.ts +3 -0
- package/dist/cjs/types/parser/tables/dimStyle/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/dimStyle/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/dimStyle/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/dimStyle/types.d.ts +912 -0
- package/dist/cjs/types/parser/tables/dimStyle/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/layer/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/layer/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/layer/types.d.ts +14 -0
- package/dist/cjs/types/parser/tables/layer/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ltype/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ltype/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/ltype/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ltype/types.d.ts +22 -0
- package/dist/cjs/types/parser/tables/ltype/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/parser.d.ts +3 -0
- package/dist/cjs/types/parser/tables/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/shared.d.ts +3 -0
- package/dist/cjs/types/parser/tables/shared.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/style/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/style/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/style/types.d.ts +15 -0
- package/dist/cjs/types/parser/tables/style/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/types.d.ts +14 -0
- package/dist/cjs/types/parser/tables/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ucs/parser.d.ts +4 -0
- package/dist/cjs/types/parser/tables/ucs/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/ucs/types.d.ts +127 -0
- package/dist/cjs/types/parser/tables/ucs/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/view/consts.d.ts +4 -0
- package/dist/cjs/types/parser/tables/view/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/view/parser.d.ts +4 -0
- package/dist/cjs/types/parser/tables/view/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/view/types.d.ts +140 -0
- package/dist/cjs/types/parser/tables/view/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/vport/parser.d.ts +2 -0
- package/dist/cjs/types/parser/tables/vport/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/tables/vport/types.d.ts +44 -0
- package/dist/cjs/types/parser/tables/vport/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/thumbnailImage/parser.d.ts +6 -0
- package/dist/cjs/types/parser/thumbnailImage/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/types.d.ts +35 -0
- package/dist/cjs/types/parser/types.d.ts.map +1 -0
- package/dist/cjs/types/stream-parser/DxfStreamParser.d.ts +44 -0
- package/dist/cjs/types/stream-parser/DxfStreamParser.d.ts.map +1 -0
- package/dist/cjs/types/stream-parser/streamShared/parseData.d.ts +20 -0
- package/dist/cjs/types/stream-parser/streamShared/parseData.d.ts.map +1 -0
- package/dist/cjs/types/types/color.d.ts +4 -0
- package/dist/cjs/types/types/color.d.ts.map +1 -0
- package/dist/cjs/types/types/dxfHeader.d.ts +17 -0
- package/dist/cjs/types/types/dxfHeader.d.ts.map +1 -0
- package/dist/cjs/types/types/shared.d.ts +22 -0
- package/dist/cjs/types/types/shared.d.ts.map +1 -0
- package/dist/cjs/types/utlis.d.ts +18 -0
- package/dist/cjs/types/utlis.d.ts.map +1 -0
- package/dist/esm/bundle.mjs +3 -0
- package/dist/esm/types/consts/block.d.ts +11 -0
- package/dist/esm/types/consts/block.d.ts.map +1 -0
- package/dist/esm/types/consts/color.d.ts +6 -0
- package/dist/esm/types/consts/color.d.ts.map +1 -0
- package/dist/esm/types/consts/config.d.ts +3 -0
- package/dist/esm/types/consts/config.d.ts.map +1 -0
- package/dist/esm/types/consts/dimension.d.ts +166 -0
- package/dist/esm/types/consts/dimension.d.ts.map +1 -0
- package/dist/esm/types/consts/hatch.d.ts +45 -0
- package/dist/esm/types/consts/hatch.d.ts.map +1 -0
- package/dist/esm/types/consts/header.d.ts +10 -0
- package/dist/esm/types/consts/header.d.ts.map +1 -0
- package/dist/esm/types/consts/lineweight.d.ts +6 -0
- package/dist/esm/types/consts/lineweight.d.ts.map +1 -0
- package/dist/esm/types/consts/measurement.d.ts +5 -0
- package/dist/esm/types/consts/measurement.d.ts.map +1 -0
- package/dist/esm/types/consts/obscuredLineTypes.d.ts +22 -0
- package/dist/esm/types/consts/obscuredLineTypes.d.ts.map +1 -0
- package/dist/esm/types/consts/plotStyleType.d.ts +14 -0
- package/dist/esm/types/consts/plotStyleType.d.ts.map +1 -0
- package/dist/esm/types/consts/viewport.d.ts +58 -0
- package/dist/esm/types/consts/viewport.d.ts.map +1 -0
- package/dist/esm/types/debug.d.ts +4 -0
- package/dist/esm/types/debug.d.ts.map +1 -0
- package/dist/esm/types/index.d.ts +174 -0
- package/dist/esm/types/index.d.ts.map +1 -0
- package/dist/esm/types/parser/AutoCadColorIndex.d.ts +9 -0
- package/dist/esm/types/parser/AutoCadColorIndex.d.ts.map +1 -0
- package/dist/esm/types/parser/DxfArrayScanner.d.ts +49 -0
- package/dist/esm/types/parser/DxfArrayScanner.d.ts.map +1 -0
- package/dist/esm/types/parser/DxfParser.d.ts +29 -0
- package/dist/esm/types/parser/DxfParser.d.ts.map +1 -0
- package/dist/esm/types/parser/ParseHelpers.d.ts +8 -0
- package/dist/esm/types/parser/ParseHelpers.d.ts.map +1 -0
- package/dist/esm/types/parser/blocks/parser.d.ts +4 -0
- package/dist/esm/types/parser/blocks/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/blocks/types.d.ts +15 -0
- package/dist/esm/types/parser/blocks/types.d.ts.map +1 -0
- package/dist/esm/types/parser/classes/consts.d.ts +18 -0
- package/dist/esm/types/parser/classes/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/classes/parser.d.ts +6 -0
- package/dist/esm/types/parser/classes/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/classes/types.d.ts +60 -0
- package/dist/esm/types/parser/classes/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/arc/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc/types.d.ts +13 -0
- package/dist/esm/types/parser/entities/arc/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc_dimension/consts.d.ts +13 -0
- package/dist/esm/types/parser/entities/arc_dimension/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc_dimension/parser.d.ts +9 -0
- package/dist/esm/types/parser/entities/arc_dimension/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/arc_dimension/types.d.ts +99 -0
- package/dist/esm/types/parser/entities/arc_dimension/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attdef/consts.d.ts +12 -0
- package/dist/esm/types/parser/entities/attdef/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attdef/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/attdef/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attdef/types.d.ts +18 -0
- package/dist/esm/types/parser/entities/attdef/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attribute/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/attribute/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/attribute/types.d.ts +31 -0
- package/dist/esm/types/parser/entities/attribute/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/body/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/body/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/body/types.d.ts +10 -0
- package/dist/esm/types/parser/entities/body/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/circle/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/circle/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/circle/types.d.ts +11 -0
- package/dist/esm/types/parser/entities/circle/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/consts.d.ts +5 -0
- package/dist/esm/types/parser/entities/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/dimension/parser.d.ts +14 -0
- package/dist/esm/types/parser/entities/dimension/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/dimension/types.d.ts +202 -0
- package/dist/esm/types/parser/entities/dimension/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/ellipse/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/ellipse/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/ellipse/types.d.ts +13 -0
- package/dist/esm/types/parser/entities/ellipse/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/face/consts.d.ts +7 -0
- package/dist/esm/types/parser/entities/face/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/face/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/face/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/face/types.d.ts +8 -0
- package/dist/esm/types/parser/entities/face/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/edge.d.ts +7 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/parser.d.ts +5 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +3 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/shared.d.ts +3 -0
- package/dist/esm/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/hatch/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/patternData.d.ts +3 -0
- package/dist/esm/types/parser/entities/hatch/patternData.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/types/boundaryPath.d.ts +60 -0
- package/dist/esm/types/parser/entities/hatch/types/boundaryPath.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/types/definitionLine.d.ts +9 -0
- package/dist/esm/types/parser/entities/hatch/types/definitionLine.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/hatch/types/hatch.d.ts +39 -0
- package/dist/esm/types/parser/entities/hatch/types/hatch.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/image/consts.d.ts +15 -0
- package/dist/esm/types/parser/entities/image/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/image/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/image/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/image/types.d.ts +55 -0
- package/dist/esm/types/parser/entities/image/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/insert/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/insert/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/insert/types.d.ts +19 -0
- package/dist/esm/types/parser/entities/insert/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/leader/consts.d.ts +7 -0
- package/dist/esm/types/parser/entities/leader/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/leader/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/leader/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/leader/types.d.ts +24 -0
- package/dist/esm/types/parser/entities/leader/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/light/consts.d.ts +11 -0
- package/dist/esm/types/parser/entities/light/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/light/parser.d.ts +10 -0
- package/dist/esm/types/parser/entities/light/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/light/types.d.ts +69 -0
- package/dist/esm/types/parser/entities/light/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/line/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/line/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/line/types.d.ts +11 -0
- package/dist/esm/types/parser/entities/line/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/lwpolyline/consts.d.ts +5 -0
- package/dist/esm/types/parser/entities/lwpolyline/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/lwpolyline/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/lwpolyline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/lwpolyline/types.d.ts +20 -0
- package/dist/esm/types/parser/entities/lwpolyline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mesh/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/mesh/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mesh/types.d.ts +23 -0
- package/dist/esm/types/parser/entities/mesh/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mline/consts.d.ts +12 -0
- package/dist/esm/types/parser/entities/mline/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mline/parser.d.ts +12 -0
- package/dist/esm/types/parser/entities/mline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mline/types.d.ts +151 -0
- package/dist/esm/types/parser/entities/mline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mtext/consts.d.ts +6 -0
- package/dist/esm/types/parser/entities/mtext/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mtext/parser.d.ts +10 -0
- package/dist/esm/types/parser/entities/mtext/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/mtext/types.d.ts +34 -0
- package/dist/esm/types/parser/entities/mtext/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/multileader/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/multileader/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/multileader/types.d.ts +35 -0
- package/dist/esm/types/parser/entities/multileader/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/point/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/point/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/point/types.d.ts +10 -0
- package/dist/esm/types/parser/entities/point/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/polyline/consts.d.ts +17 -0
- package/dist/esm/types/parser/entities/polyline/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/polyline/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/polyline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/polyline/types.d.ts +20 -0
- package/dist/esm/types/parser/entities/polyline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/ray/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/ray/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/ray/types.d.ts +11 -0
- package/dist/esm/types/parser/entities/ray/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/region/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/region/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/region/types.d.ts +10 -0
- package/dist/esm/types/parser/entities/region/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/section/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/section/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/section/types.d.ts +20 -0
- package/dist/esm/types/parser/entities/section/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/shared.d.ts +82 -0
- package/dist/esm/types/parser/entities/shared.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/solid/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/solid/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/solid/types.d.ts +10 -0
- package/dist/esm/types/parser/entities/solid/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/solid3d/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/solid3d/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/solid3d/types.d.ts +12 -0
- package/dist/esm/types/parser/entities/solid3d/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/spline/consts.d.ts +9 -0
- package/dist/esm/types/parser/entities/spline/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/spline/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/spline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/spline/types.d.ts +22 -0
- package/dist/esm/types/parser/entities/spline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/sun/parser.d.ts +10 -0
- package/dist/esm/types/parser/entities/sun/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/sun/types.d.ts +80 -0
- package/dist/esm/types/parser/entities/sun/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/text/consts.d.ts +20 -0
- package/dist/esm/types/parser/entities/text/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/text/parser.d.ts +26 -0
- package/dist/esm/types/parser/entities/text/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/text/types.d.ts +21 -0
- package/dist/esm/types/parser/entities/text/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/tolerance/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/tolerance/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/tolerance/types.d.ts +17 -0
- package/dist/esm/types/parser/entities/tolerance/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/vertex/consts.d.ts +11 -0
- package/dist/esm/types/parser/entities/vertex/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/vertex/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/vertex/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/vertex/types.d.ts +17 -0
- package/dist/esm/types/parser/entities/vertex/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/viewport/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/viewport/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/viewport/types.d.ts +187 -0
- package/dist/esm/types/parser/entities/viewport/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/wipeout/consts.d.ts +7 -0
- package/dist/esm/types/parser/entities/wipeout/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/wipeout/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/wipeout/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/wipeout/types.d.ts +38 -0
- package/dist/esm/types/parser/entities/wipeout/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/xline/parser.d.ts +8 -0
- package/dist/esm/types/parser/entities/xline/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/xline/types.d.ts +9 -0
- package/dist/esm/types/parser/entities/xline/types.d.ts.map +1 -0
- package/dist/esm/types/parser/getAcadColor.d.ts +8 -0
- package/dist/esm/types/parser/getAcadColor.d.ts.map +1 -0
- package/dist/esm/types/parser/header/parser.d.ts +3 -0
- package/dist/esm/types/parser/header/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/consts.d.ts +15 -0
- package/dist/esm/types/parser/objects/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/dictionary/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/dictionary/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/dictionary/types.d.ts +13 -0
- package/dist/esm/types/parser/objects/dictionary/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layout/consts.d.ts +5 -0
- package/dist/esm/types/parser/objects/layout/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layout/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/layout/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layout/types.d.ts +25 -0
- package/dist/esm/types/parser/objects/layout/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/parser.d.ts +5 -0
- package/dist/esm/types/parser/objects/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/plotSettings/consts.d.ts +28 -0
- package/dist/esm/types/parser/objects/plotSettings/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/plotSettings/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/plotSettings/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/plotSettings/types.d.ts +37 -0
- package/dist/esm/types/parser/objects/plotSettings/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/shared.d.ts +3 -0
- package/dist/esm/types/parser/objects/shared.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/spatial_filter/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/spatial_filter/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/spatial_filter/types.d.ts +39 -0
- package/dist/esm/types/parser/objects/spatial_filter/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/types.d.ts +29 -0
- package/dist/esm/types/parser/objects/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/xrecord/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/xrecord/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/xrecord/types.d.ts +16 -0
- package/dist/esm/types/parser/objects/xrecord/types.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/ensureHandle.d.ts +2 -0
- package/dist/esm/types/parser/shared/ensureHandle.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/extensions/parser.d.ts +4 -0
- package/dist/esm/types/parser/shared/extensions/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/isMatched.d.ts +7 -0
- package/dist/esm/types/parser/shared/isMatched.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/parsePoint.d.ts +8 -0
- package/dist/esm/types/parser/shared/parsePoint.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/parserGenerator.d.ts +50 -0
- package/dist/esm/types/parser/shared/parserGenerator.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/xdata/parser.d.ts +6 -0
- package/dist/esm/types/parser/shared/xdata/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/xdata/types.d.ts +16 -0
- package/dist/esm/types/parser/shared/xdata/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/appId/parser.d.ts +4 -0
- package/dist/esm/types/parser/tables/appId/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/appId/types.d.ts +20 -0
- package/dist/esm/types/parser/tables/appId/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/blockRecord/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/blockRecord/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/blockRecord/types.d.ts +11 -0
- package/dist/esm/types/parser/tables/blockRecord/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/consts.d.ts +38 -0
- package/dist/esm/types/parser/tables/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/dimStyle/consts.d.ts +3 -0
- package/dist/esm/types/parser/tables/dimStyle/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/dimStyle/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/dimStyle/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/dimStyle/types.d.ts +912 -0
- package/dist/esm/types/parser/tables/dimStyle/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/layer/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/layer/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/layer/types.d.ts +14 -0
- package/dist/esm/types/parser/tables/layer/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ltype/consts.d.ts +7 -0
- package/dist/esm/types/parser/tables/ltype/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ltype/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/ltype/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ltype/types.d.ts +22 -0
- package/dist/esm/types/parser/tables/ltype/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/parser.d.ts +3 -0
- package/dist/esm/types/parser/tables/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/shared.d.ts +3 -0
- package/dist/esm/types/parser/tables/shared.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/style/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/style/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/style/types.d.ts +15 -0
- package/dist/esm/types/parser/tables/style/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/types.d.ts +14 -0
- package/dist/esm/types/parser/tables/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ucs/parser.d.ts +4 -0
- package/dist/esm/types/parser/tables/ucs/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/ucs/types.d.ts +127 -0
- package/dist/esm/types/parser/tables/ucs/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/view/consts.d.ts +4 -0
- package/dist/esm/types/parser/tables/view/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/view/parser.d.ts +4 -0
- package/dist/esm/types/parser/tables/view/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/view/types.d.ts +140 -0
- package/dist/esm/types/parser/tables/view/types.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/vport/parser.d.ts +2 -0
- package/dist/esm/types/parser/tables/vport/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/tables/vport/types.d.ts +44 -0
- package/dist/esm/types/parser/tables/vport/types.d.ts.map +1 -0
- package/dist/esm/types/parser/thumbnailImage/parser.d.ts +6 -0
- package/dist/esm/types/parser/thumbnailImage/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/types.d.ts +35 -0
- package/dist/esm/types/parser/types.d.ts.map +1 -0
- package/dist/esm/types/stream-parser/DxfStreamParser.d.ts +44 -0
- package/dist/esm/types/stream-parser/DxfStreamParser.d.ts.map +1 -0
- package/dist/esm/types/stream-parser/streamShared/parseData.d.ts +20 -0
- package/dist/esm/types/stream-parser/streamShared/parseData.d.ts.map +1 -0
- package/dist/esm/types/types/color.d.ts +4 -0
- package/dist/esm/types/types/color.d.ts.map +1 -0
- package/dist/esm/types/types/dxfHeader.d.ts +17 -0
- package/dist/esm/types/types/dxfHeader.d.ts.map +1 -0
- package/dist/esm/types/types/shared.d.ts +22 -0
- package/dist/esm/types/types/shared.d.ts.map +1 -0
- package/dist/esm/types/utlis.d.ts +18 -0
- package/dist/esm/types/utlis.d.ts.map +1 -0
- package/package.json +15 -14
- package/dist/bundle.cjs +0 -3
- package/dist/bundle.mjs +0 -3
- package/dist/types/consts/block.d.ts.map +0 -1
- package/dist/types/consts/color.d.ts.map +0 -1
- package/dist/types/consts/config.d.ts.map +0 -1
- package/dist/types/consts/dimension.d.ts.map +0 -1
- package/dist/types/consts/hatch.d.ts.map +0 -1
- package/dist/types/consts/header.d.ts +0 -10
- package/dist/types/consts/header.d.ts.map +0 -1
- package/dist/types/consts/index.d.ts +0 -13
- package/dist/types/consts/index.d.ts.map +0 -1
- package/dist/types/consts/lineweight.d.ts.map +0 -1
- package/dist/types/consts/measurement.d.ts.map +0 -1
- package/dist/types/consts/obscuredLineTypes.d.ts.map +0 -1
- package/dist/types/consts/plotStyleType.d.ts.map +0 -1
- package/dist/types/consts/scene.d.ts +0 -3
- package/dist/types/consts/scene.d.ts.map +0 -1
- package/dist/types/consts/viewport.d.ts +0 -53
- package/dist/types/consts/viewport.d.ts.map +0 -1
- package/dist/types/index.d.ts +0 -8
- package/dist/types/index.d.ts.map +0 -1
- package/dist/types/parser/AutoCadColorIndex.d.ts.map +0 -1
- package/dist/types/parser/DxfArrayScanner.d.ts.map +0 -1
- package/dist/types/parser/DxfParser.d.ts +0 -22
- package/dist/types/parser/DxfParser.d.ts.map +0 -1
- package/dist/types/parser/ParseHelpers.d.ts +0 -16
- package/dist/types/parser/ParseHelpers.d.ts.map +0 -1
- package/dist/types/parser/blocks/index.d.ts +0 -5
- package/dist/types/parser/blocks/index.d.ts.map +0 -1
- package/dist/types/parser/blocks/types.d.ts +0 -15
- package/dist/types/parser/blocks/types.d.ts.map +0 -1
- package/dist/types/parser/entities/arc/index.d.ts +0 -3
- package/dist/types/parser/entities/arc/index.d.ts.map +0 -1
- package/dist/types/parser/entities/arc/parser.d.ts +0 -7
- package/dist/types/parser/entities/arc/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/arc/types.d.ts +0 -13
- package/dist/types/parser/entities/arc/types.d.ts.map +0 -1
- package/dist/types/parser/entities/arc_dimension/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/arc_dimension/index.d.ts +0 -4
- package/dist/types/parser/entities/arc_dimension/index.d.ts.map +0 -1
- package/dist/types/parser/entities/arc_dimension/parser.d.ts +0 -9
- package/dist/types/parser/entities/arc_dimension/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/arc_dimension/types.d.ts +0 -99
- package/dist/types/parser/entities/arc_dimension/types.d.ts.map +0 -1
- package/dist/types/parser/entities/attdef/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/attdef/index.d.ts +0 -4
- package/dist/types/parser/entities/attdef/index.d.ts.map +0 -1
- package/dist/types/parser/entities/attdef/parser.d.ts +0 -8
- package/dist/types/parser/entities/attdef/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/attdef/types.d.ts +0 -18
- package/dist/types/parser/entities/attdef/types.d.ts.map +0 -1
- package/dist/types/parser/entities/attribute/index.d.ts +0 -3
- package/dist/types/parser/entities/attribute/index.d.ts.map +0 -1
- package/dist/types/parser/entities/attribute/parser.d.ts +0 -8
- package/dist/types/parser/entities/attribute/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/attribute/types.d.ts +0 -31
- package/dist/types/parser/entities/attribute/types.d.ts.map +0 -1
- package/dist/types/parser/entities/body/index.d.ts +0 -3
- package/dist/types/parser/entities/body/index.d.ts.map +0 -1
- package/dist/types/parser/entities/body/parser.d.ts +0 -8
- package/dist/types/parser/entities/body/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/body/types.d.ts +0 -10
- package/dist/types/parser/entities/body/types.d.ts.map +0 -1
- package/dist/types/parser/entities/circle/index.d.ts +0 -3
- package/dist/types/parser/entities/circle/index.d.ts.map +0 -1
- package/dist/types/parser/entities/circle/parser.d.ts +0 -8
- package/dist/types/parser/entities/circle/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/circle/types.d.ts +0 -11
- package/dist/types/parser/entities/circle/types.d.ts.map +0 -1
- package/dist/types/parser/entities/dimension/index.d.ts +0 -3
- package/dist/types/parser/entities/dimension/index.d.ts.map +0 -1
- package/dist/types/parser/entities/dimension/parser.d.ts +0 -14
- package/dist/types/parser/entities/dimension/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/dimension/types.d.ts +0 -202
- package/dist/types/parser/entities/dimension/types.d.ts.map +0 -1
- package/dist/types/parser/entities/ellipse/index.d.ts +0 -3
- package/dist/types/parser/entities/ellipse/index.d.ts.map +0 -1
- package/dist/types/parser/entities/ellipse/parser.d.ts +0 -8
- package/dist/types/parser/entities/ellipse/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/ellipse/types.d.ts +0 -13
- package/dist/types/parser/entities/ellipse/types.d.ts.map +0 -1
- package/dist/types/parser/entities/face/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/face/index.d.ts +0 -4
- package/dist/types/parser/entities/face/index.d.ts.map +0 -1
- package/dist/types/parser/entities/face/parser.d.ts +0 -8
- package/dist/types/parser/entities/face/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/face/types.d.ts +0 -8
- package/dist/types/parser/entities/face/types.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/boundaryPathData/edge.d.ts +0 -7
- package/dist/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/boundaryPathData/index.d.ts +0 -5
- package/dist/types/parser/entities/hatch/boundaryPathData/index.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +0 -3
- package/dist/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/boundaryPathData/shared.d.ts +0 -3
- package/dist/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/index.d.ts +0 -9
- package/dist/types/parser/entities/hatch/index.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/patternData.d.ts +0 -3
- package/dist/types/parser/entities/hatch/patternData.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/types/boundaryPath.d.ts +0 -60
- package/dist/types/parser/entities/hatch/types/boundaryPath.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/types/definitionLine.d.ts +0 -9
- package/dist/types/parser/entities/hatch/types/definitionLine.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/types/hatch.d.ts +0 -39
- package/dist/types/parser/entities/hatch/types/hatch.d.ts.map +0 -1
- package/dist/types/parser/entities/hatch/types/index.d.ts +0 -4
- package/dist/types/parser/entities/hatch/types/index.d.ts.map +0 -1
- package/dist/types/parser/entities/image/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/image/index.d.ts +0 -4
- package/dist/types/parser/entities/image/index.d.ts.map +0 -1
- package/dist/types/parser/entities/image/parser.d.ts +0 -8
- package/dist/types/parser/entities/image/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/image/types.d.ts +0 -55
- package/dist/types/parser/entities/image/types.d.ts.map +0 -1
- package/dist/types/parser/entities/index.d.ts +0 -42
- package/dist/types/parser/entities/index.d.ts.map +0 -1
- package/dist/types/parser/entities/insert/index.d.ts +0 -3
- package/dist/types/parser/entities/insert/index.d.ts.map +0 -1
- package/dist/types/parser/entities/insert/parser.d.ts +0 -8
- package/dist/types/parser/entities/insert/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/insert/types.d.ts +0 -19
- package/dist/types/parser/entities/insert/types.d.ts.map +0 -1
- package/dist/types/parser/entities/leader/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/leader/index.d.ts +0 -4
- package/dist/types/parser/entities/leader/index.d.ts.map +0 -1
- package/dist/types/parser/entities/leader/parser.d.ts +0 -8
- package/dist/types/parser/entities/leader/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/leader/types.d.ts +0 -24
- package/dist/types/parser/entities/leader/types.d.ts.map +0 -1
- package/dist/types/parser/entities/line/index.d.ts +0 -3
- package/dist/types/parser/entities/line/index.d.ts.map +0 -1
- package/dist/types/parser/entities/line/parser.d.ts +0 -8
- package/dist/types/parser/entities/line/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/line/types.d.ts +0 -11
- package/dist/types/parser/entities/line/types.d.ts.map +0 -1
- package/dist/types/parser/entities/lwpolyline/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/lwpolyline/index.d.ts +0 -4
- package/dist/types/parser/entities/lwpolyline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/lwpolyline/parser.d.ts +0 -7
- package/dist/types/parser/entities/lwpolyline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/lwpolyline/types.d.ts +0 -20
- package/dist/types/parser/entities/lwpolyline/types.d.ts.map +0 -1
- package/dist/types/parser/entities/mesh/index.d.ts +0 -3
- package/dist/types/parser/entities/mesh/index.d.ts.map +0 -1
- package/dist/types/parser/entities/mesh/parser.d.ts +0 -8
- package/dist/types/parser/entities/mesh/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/mesh/types.d.ts +0 -23
- package/dist/types/parser/entities/mesh/types.d.ts.map +0 -1
- package/dist/types/parser/entities/mline/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/mline/index.d.ts +0 -4
- package/dist/types/parser/entities/mline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/mline/parser.d.ts +0 -12
- package/dist/types/parser/entities/mline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/mline/types.d.ts +0 -151
- package/dist/types/parser/entities/mline/types.d.ts.map +0 -1
- package/dist/types/parser/entities/mtext/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/mtext/index.d.ts +0 -4
- package/dist/types/parser/entities/mtext/index.d.ts.map +0 -1
- package/dist/types/parser/entities/mtext/parser.d.ts +0 -10
- package/dist/types/parser/entities/mtext/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/mtext/types.d.ts +0 -34
- package/dist/types/parser/entities/mtext/types.d.ts.map +0 -1
- package/dist/types/parser/entities/multileader/index.d.ts +0 -3
- package/dist/types/parser/entities/multileader/index.d.ts.map +0 -1
- package/dist/types/parser/entities/multileader/parser.d.ts +0 -8
- package/dist/types/parser/entities/multileader/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/multileader/types.d.ts +0 -35
- package/dist/types/parser/entities/multileader/types.d.ts.map +0 -1
- package/dist/types/parser/entities/point/index.d.ts +0 -3
- package/dist/types/parser/entities/point/index.d.ts.map +0 -1
- package/dist/types/parser/entities/point/parser.d.ts +0 -7
- package/dist/types/parser/entities/point/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/point/types.d.ts +0 -10
- package/dist/types/parser/entities/point/types.d.ts.map +0 -1
- package/dist/types/parser/entities/polyline/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/polyline/index.d.ts +0 -4
- package/dist/types/parser/entities/polyline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/polyline/parser.d.ts +0 -7
- package/dist/types/parser/entities/polyline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/polyline/types.d.ts +0 -20
- package/dist/types/parser/entities/polyline/types.d.ts.map +0 -1
- package/dist/types/parser/entities/ray/index.d.ts +0 -3
- package/dist/types/parser/entities/ray/index.d.ts.map +0 -1
- package/dist/types/parser/entities/ray/parser.d.ts +0 -8
- package/dist/types/parser/entities/ray/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/ray/types.d.ts +0 -11
- package/dist/types/parser/entities/ray/types.d.ts.map +0 -1
- package/dist/types/parser/entities/region/index.d.ts +0 -3
- package/dist/types/parser/entities/region/index.d.ts.map +0 -1
- package/dist/types/parser/entities/region/parser.d.ts +0 -8
- package/dist/types/parser/entities/region/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/region/types.d.ts +0 -10
- package/dist/types/parser/entities/region/types.d.ts.map +0 -1
- package/dist/types/parser/entities/section/index.d.ts +0 -3
- package/dist/types/parser/entities/section/index.d.ts.map +0 -1
- package/dist/types/parser/entities/section/parser.d.ts +0 -7
- package/dist/types/parser/entities/section/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/section/types.d.ts +0 -20
- package/dist/types/parser/entities/section/types.d.ts.map +0 -1
- package/dist/types/parser/entities/shared.d.ts +0 -82
- package/dist/types/parser/entities/shared.d.ts.map +0 -1
- package/dist/types/parser/entities/solid/index.d.ts +0 -3
- package/dist/types/parser/entities/solid/index.d.ts.map +0 -1
- package/dist/types/parser/entities/solid/parser.d.ts +0 -8
- package/dist/types/parser/entities/solid/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/solid/types.d.ts +0 -10
- package/dist/types/parser/entities/solid/types.d.ts.map +0 -1
- package/dist/types/parser/entities/solid3d/index.d.ts +0 -3
- package/dist/types/parser/entities/solid3d/index.d.ts.map +0 -1
- package/dist/types/parser/entities/solid3d/parser.d.ts +0 -8
- package/dist/types/parser/entities/solid3d/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/solid3d/types.d.ts +0 -12
- package/dist/types/parser/entities/solid3d/types.d.ts.map +0 -1
- package/dist/types/parser/entities/spline/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/spline/index.d.ts +0 -4
- package/dist/types/parser/entities/spline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/spline/parser.d.ts +0 -8
- package/dist/types/parser/entities/spline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/spline/types.d.ts +0 -22
- package/dist/types/parser/entities/spline/types.d.ts.map +0 -1
- package/dist/types/parser/entities/text/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/text/index.d.ts +0 -4
- package/dist/types/parser/entities/text/index.d.ts.map +0 -1
- package/dist/types/parser/entities/text/parser.d.ts +0 -26
- package/dist/types/parser/entities/text/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/text/types.d.ts +0 -21
- package/dist/types/parser/entities/text/types.d.ts.map +0 -1
- package/dist/types/parser/entities/tolerance/index.d.ts +0 -3
- package/dist/types/parser/entities/tolerance/index.d.ts.map +0 -1
- package/dist/types/parser/entities/tolerance/parser.d.ts +0 -8
- package/dist/types/parser/entities/tolerance/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/tolerance/types.d.ts +0 -17
- package/dist/types/parser/entities/tolerance/types.d.ts.map +0 -1
- package/dist/types/parser/entities/vertex/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/vertex/index.d.ts +0 -4
- package/dist/types/parser/entities/vertex/index.d.ts.map +0 -1
- package/dist/types/parser/entities/vertex/parser.d.ts +0 -8
- package/dist/types/parser/entities/vertex/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/vertex/types.d.ts +0 -17
- package/dist/types/parser/entities/vertex/types.d.ts.map +0 -1
- package/dist/types/parser/entities/viewport/index.d.ts +0 -3
- package/dist/types/parser/entities/viewport/index.d.ts.map +0 -1
- package/dist/types/parser/entities/viewport/parser.d.ts +0 -7
- package/dist/types/parser/entities/viewport/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/viewport/types.d.ts +0 -187
- package/dist/types/parser/entities/viewport/types.d.ts.map +0 -1
- package/dist/types/parser/entities/wipeout/consts.d.ts.map +0 -1
- package/dist/types/parser/entities/wipeout/index.d.ts +0 -4
- package/dist/types/parser/entities/wipeout/index.d.ts.map +0 -1
- package/dist/types/parser/entities/wipeout/parser.d.ts +0 -8
- package/dist/types/parser/entities/wipeout/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/wipeout/types.d.ts +0 -38
- package/dist/types/parser/entities/wipeout/types.d.ts.map +0 -1
- package/dist/types/parser/entities/xline/index.d.ts +0 -3
- package/dist/types/parser/entities/xline/index.d.ts.map +0 -1
- package/dist/types/parser/entities/xline/parser.d.ts +0 -8
- package/dist/types/parser/entities/xline/parser.d.ts.map +0 -1
- package/dist/types/parser/entities/xline/types.d.ts +0 -9
- package/dist/types/parser/entities/xline/types.d.ts.map +0 -1
- package/dist/types/parser/getAcadColor.d.ts +0 -8
- package/dist/types/parser/getAcadColor.d.ts.map +0 -1
- package/dist/types/parser/header/index.d.ts +0 -3
- package/dist/types/parser/header/index.d.ts.map +0 -1
- package/dist/types/parser/index.d.ts +0 -9
- package/dist/types/parser/index.d.ts.map +0 -1
- package/dist/types/parser/objects/consts.d.ts.map +0 -1
- package/dist/types/parser/objects/dictionary/index.d.ts +0 -3
- package/dist/types/parser/objects/dictionary/index.d.ts.map +0 -1
- package/dist/types/parser/objects/dictionary/parser.d.ts +0 -3
- package/dist/types/parser/objects/dictionary/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/dictionary/types.d.ts +0 -13
- package/dist/types/parser/objects/dictionary/types.d.ts.map +0 -1
- package/dist/types/parser/objects/index.d.ts +0 -12
- package/dist/types/parser/objects/index.d.ts.map +0 -1
- package/dist/types/parser/objects/layout/consts.d.ts.map +0 -1
- package/dist/types/parser/objects/layout/index.d.ts +0 -4
- package/dist/types/parser/objects/layout/index.d.ts.map +0 -1
- package/dist/types/parser/objects/layout/parser.d.ts +0 -3
- package/dist/types/parser/objects/layout/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/layout/types.d.ts +0 -25
- package/dist/types/parser/objects/layout/types.d.ts.map +0 -1
- package/dist/types/parser/objects/plotSettings/consts.d.ts.map +0 -1
- package/dist/types/parser/objects/plotSettings/index.d.ts +0 -4
- package/dist/types/parser/objects/plotSettings/index.d.ts.map +0 -1
- package/dist/types/parser/objects/plotSettings/parser.d.ts +0 -3
- package/dist/types/parser/objects/plotSettings/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/plotSettings/types.d.ts +0 -37
- package/dist/types/parser/objects/plotSettings/types.d.ts.map +0 -1
- package/dist/types/parser/objects/shared.d.ts +0 -3
- package/dist/types/parser/objects/shared.d.ts.map +0 -1
- package/dist/types/parser/objects/spatial_filter/index.d.ts +0 -3
- package/dist/types/parser/objects/spatial_filter/index.d.ts.map +0 -1
- package/dist/types/parser/objects/spatial_filter/parser.d.ts +0 -3
- package/dist/types/parser/objects/spatial_filter/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/spatial_filter/types.d.ts +0 -39
- package/dist/types/parser/objects/spatial_filter/types.d.ts.map +0 -1
- package/dist/types/parser/objects/types.d.ts +0 -29
- package/dist/types/parser/objects/types.d.ts.map +0 -1
- package/dist/types/parser/objects/xrecord/index.d.ts +0 -3
- package/dist/types/parser/objects/xrecord/index.d.ts.map +0 -1
- package/dist/types/parser/objects/xrecord/parser.d.ts +0 -3
- package/dist/types/parser/objects/xrecord/parser.d.ts.map +0 -1
- package/dist/types/parser/objects/xrecord/types.d.ts +0 -16
- package/dist/types/parser/objects/xrecord/types.d.ts.map +0 -1
- package/dist/types/parser/shared/extensions/parser.d.ts +0 -4
- package/dist/types/parser/shared/extensions/parser.d.ts.map +0 -1
- package/dist/types/parser/shared/index.d.ts +0 -5
- package/dist/types/parser/shared/index.d.ts.map +0 -1
- package/dist/types/parser/shared/isMatched.d.ts +0 -7
- package/dist/types/parser/shared/isMatched.d.ts.map +0 -1
- package/dist/types/parser/shared/parsePoint.d.ts +0 -8
- package/dist/types/parser/shared/parsePoint.d.ts.map +0 -1
- package/dist/types/parser/shared/parserGenerator.d.ts +0 -50
- package/dist/types/parser/shared/parserGenerator.d.ts.map +0 -1
- package/dist/types/parser/shared/xdata/index.d.ts +0 -4
- package/dist/types/parser/shared/xdata/index.d.ts.map +0 -1
- package/dist/types/parser/shared/xdata/interpreter.d.ts +0 -21
- package/dist/types/parser/shared/xdata/interpreter.d.ts.map +0 -1
- package/dist/types/parser/shared/xdata/parser.d.ts +0 -6
- package/dist/types/parser/shared/xdata/parser.d.ts.map +0 -1
- package/dist/types/parser/shared/xdata/types.d.ts +0 -10
- package/dist/types/parser/shared/xdata/types.d.ts.map +0 -1
- package/dist/types/parser/tables/blockRecord/index.d.ts +0 -3
- package/dist/types/parser/tables/blockRecord/index.d.ts.map +0 -1
- package/dist/types/parser/tables/blockRecord/parser.d.ts +0 -2
- package/dist/types/parser/tables/blockRecord/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/blockRecord/types.d.ts +0 -11
- package/dist/types/parser/tables/blockRecord/types.d.ts.map +0 -1
- package/dist/types/parser/tables/dimStyle/consts.d.ts +0 -3
- package/dist/types/parser/tables/dimStyle/consts.d.ts.map +0 -1
- package/dist/types/parser/tables/dimStyle/index.d.ts +0 -4
- package/dist/types/parser/tables/dimStyle/index.d.ts.map +0 -1
- package/dist/types/parser/tables/dimStyle/parser.d.ts +0 -2
- package/dist/types/parser/tables/dimStyle/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/dimStyle/types.d.ts +0 -912
- package/dist/types/parser/tables/dimStyle/types.d.ts.map +0 -1
- package/dist/types/parser/tables/index.d.ts +0 -9
- package/dist/types/parser/tables/index.d.ts.map +0 -1
- package/dist/types/parser/tables/layer/index.d.ts +0 -3
- package/dist/types/parser/tables/layer/index.d.ts.map +0 -1
- package/dist/types/parser/tables/layer/parser.d.ts +0 -2
- package/dist/types/parser/tables/layer/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/layer/types.d.ts +0 -14
- package/dist/types/parser/tables/layer/types.d.ts.map +0 -1
- package/dist/types/parser/tables/ltype/consts.d.ts.map +0 -1
- package/dist/types/parser/tables/ltype/index.d.ts +0 -4
- package/dist/types/parser/tables/ltype/index.d.ts.map +0 -1
- package/dist/types/parser/tables/ltype/parser.d.ts +0 -2
- package/dist/types/parser/tables/ltype/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/ltype/types.d.ts +0 -22
- package/dist/types/parser/tables/ltype/types.d.ts.map +0 -1
- package/dist/types/parser/tables/parser.d.ts +0 -3
- package/dist/types/parser/tables/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/shared.d.ts +0 -3
- package/dist/types/parser/tables/shared.d.ts.map +0 -1
- package/dist/types/parser/tables/style/index.d.ts +0 -3
- package/dist/types/parser/tables/style/index.d.ts.map +0 -1
- package/dist/types/parser/tables/style/parser.d.ts +0 -2
- package/dist/types/parser/tables/style/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/style/types.d.ts +0 -15
- package/dist/types/parser/tables/style/types.d.ts.map +0 -1
- package/dist/types/parser/tables/types.d.ts +0 -15
- package/dist/types/parser/tables/types.d.ts.map +0 -1
- package/dist/types/parser/tables/vport/index.d.ts +0 -3
- package/dist/types/parser/tables/vport/index.d.ts.map +0 -1
- package/dist/types/parser/tables/vport/parser.d.ts +0 -2
- package/dist/types/parser/tables/vport/parser.d.ts.map +0 -1
- package/dist/types/parser/tables/vport/types.d.ts +0 -44
- package/dist/types/parser/tables/vport/types.d.ts.map +0 -1
- package/dist/types/parser/types.d.ts +0 -23
- package/dist/types/parser/types.d.ts.map +0 -1
- package/dist/types/stream-parser/DxfStreamParser.d.ts +0 -44
- package/dist/types/stream-parser/DxfStreamParser.d.ts.map +0 -1
- package/dist/types/stream-parser/index.d.ts +0 -2
- package/dist/types/stream-parser/index.d.ts.map +0 -1
- package/dist/types/stream-parser/streamShared/parseData.d.ts +0 -20
- package/dist/types/stream-parser/streamShared/parseData.d.ts.map +0 -1
- package/dist/types/types/color.d.ts +0 -4
- package/dist/types/types/color.d.ts.map +0 -1
- package/dist/types/types/dxfHeader.d.ts +0 -17
- package/dist/types/types/dxfHeader.d.ts.map +0 -1
- package/dist/types/types/index.d.ts +0 -24
- package/dist/types/types/index.d.ts.map +0 -1
- package/dist/types/utils/debug.d.ts.map +0 -1
- package/dist/types/utils/index.d.ts +0 -18
- package/dist/types/utils/index.d.ts.map +0 -1
- /package/dist/{types → cjs/types}/consts/block.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/color.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/config.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/dimension.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/hatch.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/lineweight.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/measurement.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/obscuredLineTypes.d.ts +0 -0
- /package/dist/{types → cjs/types}/consts/plotStyleType.d.ts +0 -0
- /package/dist/{types/utils → cjs/types}/debug.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/AutoCadColorIndex.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/DxfArrayScanner.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/arc_dimension/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/attdef/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/face/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/image/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/leader/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/lwpolyline/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/mline/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/mtext/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/polyline/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/spline/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/text/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/vertex/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/entities/wipeout/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/objects/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/objects/layout/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/objects/plotSettings/consts.d.ts +0 -0
- /package/dist/{types → cjs/types}/parser/tables/ltype/consts.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plotStyleType.d.ts","sourceRoot":"","sources":["../../../../src/consts/plotStyleType.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,oBAAY,aAAa;IACvB,OAAO,IAAI;IACX,OAAO,IAAI;IACX,mBAAmB,IAAI;IACvB,qCAAqC;IACrC,QAAQ,IAAI;CACb"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export declare enum ViewportStatusFlag {
|
|
2
|
+
PERSPECTIVE_MODE = 1,
|
|
3
|
+
FRONT_CLIPPING = 2,
|
|
4
|
+
BACK_CLIPPING = 4,
|
|
5
|
+
UCS_FOLLOW = 8,
|
|
6
|
+
FRONT_CLIP_NOT_AT_EYE = 16,
|
|
7
|
+
UCS_ICON_VISIBILITY = 32,
|
|
8
|
+
UCS_ICON_AT_ORIGIN = 64,
|
|
9
|
+
FAST_ZOOM = 128,
|
|
10
|
+
SNAP_MODE = 256,
|
|
11
|
+
GRID_MODE = 512,
|
|
12
|
+
ISOMETRIC_SNAP_STYLE = 1024,
|
|
13
|
+
HIDE_PLOT_MODE = 2048,
|
|
14
|
+
K_ISO_PAIR_TOP = 4096,
|
|
15
|
+
K_ISO_PAIR_RIGHT = 8192,
|
|
16
|
+
VIEWPORT_ZOOM_LOCKING = 16384,
|
|
17
|
+
UNUSED = 32768,
|
|
18
|
+
NON_RECTANGULAR_CLIPPING = 65536,
|
|
19
|
+
VIEWPORT_OFF = 131072,
|
|
20
|
+
GRID_BEYOND_DRAWING_LIMITS = 262144,
|
|
21
|
+
ADAPTIVE_GRID_DISPLAY = 524288,
|
|
22
|
+
SUBDIVISION_BELOW_SPACING = 1048576,
|
|
23
|
+
GRID_FOLLOWS_WORKPLANE = 2097152
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* In AutoCAD, all rendering modes except 2D Optimized engage the new 3D graphics pipeline.
|
|
27
|
+
*
|
|
28
|
+
* These values directly correspond to the `SHADEMODE` command.
|
|
29
|
+
*/
|
|
30
|
+
export declare enum RenderMode {
|
|
31
|
+
OPTIMIZED_2D = 0,// classic 2D
|
|
32
|
+
WIREFRAME = 1,
|
|
33
|
+
HIDDEN_LINE = 2,
|
|
34
|
+
FLAT_SHADED = 3,
|
|
35
|
+
GOURAUD_SHADED = 4,
|
|
36
|
+
FLAT_SHADED_WITH_WIREFRAME = 5,
|
|
37
|
+
GOURAUD_SHADED_WITH_WIREFRAME = 6
|
|
38
|
+
}
|
|
39
|
+
export declare enum UCSPerViewport {
|
|
40
|
+
/** The UCS will not change when this viewport becomes active. */
|
|
41
|
+
UCS_UNCHANGED = 0,
|
|
42
|
+
/** This viewport stores its own UCS which will become the current UCS whenever the viewport is activated */
|
|
43
|
+
HAS_OWN_UCS = 1
|
|
44
|
+
}
|
|
45
|
+
export declare enum OrthographicType {
|
|
46
|
+
NON_ORTHOGRAPHIC = 0,
|
|
47
|
+
TOP = 1,
|
|
48
|
+
BOTTOM = 2,
|
|
49
|
+
FRONT = 3,
|
|
50
|
+
BACK = 4,
|
|
51
|
+
LEFT = 5,
|
|
52
|
+
RIGHT = 6
|
|
53
|
+
}
|
|
54
|
+
export declare enum DefaultLightingType {
|
|
55
|
+
ONE_DISTANT_LIGHT = 0,
|
|
56
|
+
TWO_DISTANT_LIGHTS = 1
|
|
57
|
+
}
|
|
58
|
+
//# sourceMappingURL=viewport.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"viewport.d.ts","sourceRoot":"","sources":["../../../../src/consts/viewport.ts"],"names":[],"mappings":"AAAA,oBAAY,kBAAkB;IAC5B,gBAAgB,IAAM;IACtB,cAAc,IAAM;IACpB,aAAa,IAAM;IACnB,UAAU,IAAM;IAChB,qBAAqB,KAAO;IAC5B,mBAAmB,KAAO;IAC1B,kBAAkB,KAAO;IACzB,SAAS,MAAO;IAChB,SAAS,MAAQ;IACjB,SAAS,MAAQ;IACjB,oBAAoB,OAAQ;IAC5B,cAAc,OAAQ;IACtB,cAAc,OAAS;IACvB,gBAAgB,OAAS;IACzB,qBAAqB,QAAS;IAC9B,MAAM,QAAS;IACf,wBAAwB,QAAU;IAClC,YAAY,SAAU;IACtB,0BAA0B,SAAU;IACpC,qBAAqB,SAAU;IAC/B,yBAAyB,UAAW;IACpC,sBAAsB,UAAW;CAClC;AAED;;;;GAIG;AACH,oBAAY,UAAU;IACpB,YAAY,IAAI,CAAE,aAAa;IAC/B,SAAS,IAAI;IACb,WAAW,IAAI;IACf,WAAW,IAAI;IACf,cAAc,IAAI;IAClB,0BAA0B,IAAI;IAC9B,6BAA6B,IAAI;CAClC;AAED,oBAAY,cAAc;IACxB,iEAAiE;IACjE,aAAa,IAAI;IACjB,4GAA4G;IAC5G,WAAW,IAAI;CAChB;AAED,oBAAY,gBAAgB;IAC1B,gBAAgB,IAAI;IACpB,GAAG,IAAI;IACP,MAAM,IAAI;IACV,KAAK,IAAI;IACT,IAAI,IAAI;IACR,IAAI,IAAI;IACR,KAAK,IAAI;CACV;AAED,oBAAY,mBAAmB;IAC7B,iBAAiB,IAAI;IACrB,kBAAkB,IAAI;CACvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug.d.ts","sourceRoot":"","sources":["../../../src/debug.ts"],"names":[],"mappings":"AAEA,wBAAgB,kBAAkB,SAEjC;AAED,wBAAgB,mBAAmB,SAElC;AAED,wBAAgB,YAAY,CAAC,CAAC,EAAE,GAAG,EAAE,IAAI,GAAE,KAAK,GAAG,OAAO,GAAG,MAAc,QAI1E"}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
export * from './consts/block.ts';
|
|
2
|
+
export * from './consts/color.ts';
|
|
3
|
+
export * from './consts/config.ts';
|
|
4
|
+
export * from './consts/dimension.ts';
|
|
5
|
+
export * from './consts/hatch.ts';
|
|
6
|
+
export * from './consts/header.ts';
|
|
7
|
+
export * from './consts/lineweight.ts';
|
|
8
|
+
export * from './consts/measurement.ts';
|
|
9
|
+
export * from './consts/obscuredLineTypes.ts';
|
|
10
|
+
export * from './consts/viewport.ts';
|
|
11
|
+
export * from './consts/plotStyleType.ts';
|
|
12
|
+
export * from './parser/classes/types.ts';
|
|
13
|
+
export * from './parser/classes/consts.ts';
|
|
14
|
+
export * from './parser/classes/parser.ts';
|
|
15
|
+
export * from './parser/entities/consts.ts';
|
|
16
|
+
export * from './parser/entities/arc/parser.ts';
|
|
17
|
+
export * from './parser/entities/arc/types.ts';
|
|
18
|
+
export * from './parser/entities/arc_dimension/types.ts';
|
|
19
|
+
export * from './parser/entities/arc_dimension/consts.ts';
|
|
20
|
+
export * from './parser/entities/arc_dimension/parser.ts';
|
|
21
|
+
export * from './parser/entities/attdef/types.ts';
|
|
22
|
+
export * from './parser/entities/attdef/consts.ts';
|
|
23
|
+
export * from './parser/entities/attdef/parser.ts';
|
|
24
|
+
export * from './parser/entities/attribute/parser.ts';
|
|
25
|
+
export * from './parser/entities/attribute/types.ts';
|
|
26
|
+
export * from './parser/entities/body/parser.ts';
|
|
27
|
+
export * from './parser/entities/body/types.ts';
|
|
28
|
+
export * from './parser/entities/circle/parser.ts';
|
|
29
|
+
export * from './parser/entities/circle/types.ts';
|
|
30
|
+
export * from './parser/entities/dimension/parser.ts';
|
|
31
|
+
export * from './parser/entities/dimension/types.ts';
|
|
32
|
+
export * from './parser/entities/ellipse/parser.ts';
|
|
33
|
+
export * from './parser/entities/ellipse/types.ts';
|
|
34
|
+
export * from './parser/entities/face/parser.ts';
|
|
35
|
+
export * from './parser/entities/face/types.ts';
|
|
36
|
+
export * from './parser/entities/face/consts.ts';
|
|
37
|
+
export * from './parser/entities/hatch/parser.ts';
|
|
38
|
+
export * from './parser/entities/hatch/patternData.ts';
|
|
39
|
+
export * from './parser/entities/hatch/boundaryPathData/edge.ts';
|
|
40
|
+
export * from './parser/entities/hatch/boundaryPathData/parser.ts';
|
|
41
|
+
export * from './parser/entities/hatch/boundaryPathData/polyline.ts';
|
|
42
|
+
export * from './parser/entities/hatch/boundaryPathData/shared.ts';
|
|
43
|
+
export * from './parser/entities/hatch/types/boundaryPath.ts';
|
|
44
|
+
export * from './parser/entities/hatch/types/definitionLine.ts';
|
|
45
|
+
export * from './parser/entities/hatch/types/hatch.ts';
|
|
46
|
+
export * from './parser/entities/image/parser.ts';
|
|
47
|
+
export * from './parser/entities/image/types.ts';
|
|
48
|
+
export * from './parser/entities/image/consts.ts';
|
|
49
|
+
export * from './parser/entities/insert/parser.ts';
|
|
50
|
+
export * from './parser/entities/insert/types.ts';
|
|
51
|
+
export * from './parser/entities/leader/parser.ts';
|
|
52
|
+
export * from './parser/entities/leader/types.ts';
|
|
53
|
+
export * from './parser/entities/leader/consts.ts';
|
|
54
|
+
export * from './parser/entities/line/parser.ts';
|
|
55
|
+
export * from './parser/entities/line/types.ts';
|
|
56
|
+
export * from './parser/entities/light/parser.ts';
|
|
57
|
+
export * from './parser/entities/light/types.ts';
|
|
58
|
+
export * from './parser/entities/light/consts.ts';
|
|
59
|
+
export * from './parser/entities/lwpolyline/parser.ts';
|
|
60
|
+
export * from './parser/entities/lwpolyline/types.ts';
|
|
61
|
+
export * from './parser/entities/lwpolyline/consts.ts';
|
|
62
|
+
export * from './parser/entities/mesh/parser.ts';
|
|
63
|
+
export * from './parser/entities/mesh/types.ts';
|
|
64
|
+
export * from './parser/entities/mline/parser.ts';
|
|
65
|
+
export * from './parser/entities/mline/types.ts';
|
|
66
|
+
export * from './parser/entities/mline/consts.ts';
|
|
67
|
+
export * from './parser/entities/mtext/parser.ts';
|
|
68
|
+
export * from './parser/entities/mtext/types.ts';
|
|
69
|
+
export * from './parser/entities/mtext/consts.ts';
|
|
70
|
+
export * from './parser/entities/multileader/parser.ts';
|
|
71
|
+
export * from './parser/entities/multileader/types.ts';
|
|
72
|
+
export * from './parser/entities/point/parser.ts';
|
|
73
|
+
export * from './parser/entities/point/types.ts';
|
|
74
|
+
export * from './parser/entities/polyline/parser.ts';
|
|
75
|
+
export * from './parser/entities/polyline/types.ts';
|
|
76
|
+
export * from './parser/entities/polyline/consts.ts';
|
|
77
|
+
export * from './parser/entities/ray/parser.ts';
|
|
78
|
+
export * from './parser/entities/ray/types.ts';
|
|
79
|
+
export * from './parser/entities/region/parser.ts';
|
|
80
|
+
export * from './parser/entities/region/types.ts';
|
|
81
|
+
export * from './parser/entities/section/parser.ts';
|
|
82
|
+
export * from './parser/entities/section/types.ts';
|
|
83
|
+
export * from './parser/entities/solid/parser.ts';
|
|
84
|
+
export * from './parser/entities/solid/types.ts';
|
|
85
|
+
export * from './parser/entities/solid3d/parser.ts';
|
|
86
|
+
export * from './parser/entities/solid3d/types.ts';
|
|
87
|
+
export * from './parser/entities/spline/parser.ts';
|
|
88
|
+
export * from './parser/entities/spline/types.ts';
|
|
89
|
+
export * from './parser/entities/spline/consts.ts';
|
|
90
|
+
export * from './parser/entities/sun/types.ts';
|
|
91
|
+
export * from './parser/entities/sun/parser.ts';
|
|
92
|
+
export * from './parser/entities/text/parser.ts';
|
|
93
|
+
export * from './parser/entities/text/types.ts';
|
|
94
|
+
export * from './parser/entities/text/consts.ts';
|
|
95
|
+
export * from './parser/entities/tolerance/parser.ts';
|
|
96
|
+
export * from './parser/entities/tolerance/types.ts';
|
|
97
|
+
export * from './parser/entities/vertex/parser.ts';
|
|
98
|
+
export * from './parser/entities/vertex/types.ts';
|
|
99
|
+
export * from './parser/entities/vertex/consts.ts';
|
|
100
|
+
export * from './parser/entities/viewport/parser.ts';
|
|
101
|
+
export * from './parser/entities/viewport/types.ts';
|
|
102
|
+
export * from './parser/entities/wipeout/parser.ts';
|
|
103
|
+
export * from './parser/entities/wipeout/types.ts';
|
|
104
|
+
export * from './parser/entities/wipeout/consts.ts';
|
|
105
|
+
export * from './parser/entities/xline/parser.ts';
|
|
106
|
+
export * from './parser/entities/xline/types.ts';
|
|
107
|
+
export * from './parser/entities/shared.ts';
|
|
108
|
+
export * from './parser/entities/parser.ts';
|
|
109
|
+
export * from './parser/DxfParser.ts';
|
|
110
|
+
export * from './parser/DxfArrayScanner.ts';
|
|
111
|
+
export * from './parser/ParseHelpers.ts';
|
|
112
|
+
export * from './parser/getAcadColor.ts';
|
|
113
|
+
export * from './parser/AutoCadColorIndex.ts';
|
|
114
|
+
export * from './parser/types.ts';
|
|
115
|
+
export * from './parser/blocks/parser.ts';
|
|
116
|
+
export * from './parser/blocks/types.ts';
|
|
117
|
+
export * from './parser/header/parser.ts';
|
|
118
|
+
export * from './parser/shared/ensureHandle.ts';
|
|
119
|
+
export * from './parser/shared/isMatched.ts';
|
|
120
|
+
export * from './parser/shared/parsePoint.ts';
|
|
121
|
+
export * from './parser/shared/parserGenerator.ts';
|
|
122
|
+
export * from './parser/shared/extensions/parser.ts';
|
|
123
|
+
export * from './parser/shared/xdata/parser.ts';
|
|
124
|
+
export * from './parser/shared/xdata/types.ts';
|
|
125
|
+
export * from './parser/objects/parser.ts';
|
|
126
|
+
export * from './parser/objects/types.ts';
|
|
127
|
+
export * from './parser/objects/consts.ts';
|
|
128
|
+
export * from './parser/objects/shared.ts';
|
|
129
|
+
export * from './parser/objects/dictionary/parser.ts';
|
|
130
|
+
export * from './parser/objects/dictionary/types.ts';
|
|
131
|
+
export * from './parser/objects/layout/parser.ts';
|
|
132
|
+
export * from './parser/objects/layout/types.ts';
|
|
133
|
+
export * from './parser/objects/layout/consts.ts';
|
|
134
|
+
export * from './parser/objects/plotSettings/parser.ts';
|
|
135
|
+
export * from './parser/objects/plotSettings/types.ts';
|
|
136
|
+
export * from './parser/objects/plotSettings/consts.ts';
|
|
137
|
+
export * from './parser/objects/spatial_filter/parser.ts';
|
|
138
|
+
export * from './parser/objects/spatial_filter/types.ts';
|
|
139
|
+
export * from './parser/objects/xrecord/parser.ts';
|
|
140
|
+
export * from './parser/objects/xrecord/types.ts';
|
|
141
|
+
export * from './parser/tables/appId/types.ts';
|
|
142
|
+
export * from './parser/tables/appId/parser.ts';
|
|
143
|
+
export * from './parser/tables/parser.ts';
|
|
144
|
+
export * from './parser/tables/types.ts';
|
|
145
|
+
export * from './parser/tables/shared.ts';
|
|
146
|
+
export * from './parser/tables/blockRecord/parser.ts';
|
|
147
|
+
export * from './parser/tables/blockRecord/types.ts';
|
|
148
|
+
export * from './parser/tables/dimStyle/parser.ts';
|
|
149
|
+
export * from './parser/tables/dimStyle/types.ts';
|
|
150
|
+
export * from './parser/tables/dimStyle/consts.ts';
|
|
151
|
+
export * from './parser/tables/layer/parser.ts';
|
|
152
|
+
export * from './parser/tables/layer/types.ts';
|
|
153
|
+
export * from './parser/tables/ltype/parser.ts';
|
|
154
|
+
export * from './parser/tables/ltype/types.ts';
|
|
155
|
+
export * from './parser/tables/ltype/consts.ts';
|
|
156
|
+
export * from './parser/tables/style/parser.ts';
|
|
157
|
+
export * from './parser/tables/style/types.ts';
|
|
158
|
+
export * from './parser/tables/ucs/parser.ts';
|
|
159
|
+
export * from './parser/tables/ucs/types.ts';
|
|
160
|
+
export * from './parser/tables/view/consts.ts';
|
|
161
|
+
export * from './parser/tables/view/parser.ts';
|
|
162
|
+
export * from './parser/tables/view/types.ts';
|
|
163
|
+
export * from './parser/tables/vport/parser.ts';
|
|
164
|
+
export * from './parser/tables/vport/types.ts';
|
|
165
|
+
export * from './parser/tables/consts.ts';
|
|
166
|
+
export * from './stream-parser/DxfStreamParser.ts';
|
|
167
|
+
export * from './types/color.ts';
|
|
168
|
+
export * from './types/dxfHeader.ts';
|
|
169
|
+
export * from './types/shared.ts';
|
|
170
|
+
export * from './debug.ts';
|
|
171
|
+
export * from './utlis.ts';
|
|
172
|
+
import { DxfParser } from './parser/DxfParser.ts';
|
|
173
|
+
export default DxfParser;
|
|
174
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,mBAAmB,CAAA;AACjC,cAAc,oBAAoB,CAAA;AAClC,cAAc,uBAAuB,CAAA;AACrC,cAAc,mBAAmB,CAAA;AACjC,cAAc,oBAAoB,CAAA;AAClC,cAAc,wBAAwB,CAAA;AACtC,cAAc,yBAAyB,CAAA;AACvC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA;AACpC,cAAc,2BAA2B,CAAA;AAEzC,cAAc,2BAA2B,CAAA;AACzC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,4BAA4B,CAAA;AAE1C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,0CAA0C,CAAA;AACxD,cAAc,2CAA2C,CAAA;AACzD,cAAc,2CAA2C,CAAA;AACzD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,oCAAoC,CAAA;AAClD,cAAc,uCAAuC,CAAA;AACrD,cAAc,sCAAsC,CAAA;AACpD,cAAc,kCAAkC,CAAA;AAChD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,uCAAuC,CAAA;AACrD,cAAc,sCAAsC,CAAA;AACpD,cAAc,qCAAqC,CAAA;AACnD,cAAc,oCAAoC,CAAA;AAClD,cAAc,kCAAkC,CAAA;AAChD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,kCAAkC,CAAA;AAChD,cAAc,mCAAmC,CAAA;AACjD,cAAc,wCAAwC,CAAA;AACtD,cAAc,kDAAkD,CAAA;AAChE,cAAc,oDAAoD,CAAA;AAClE,cAAc,sDAAsD,CAAA;AACpE,cAAc,oDAAoD,CAAA;AAClE,cAAc,+CAA+C,CAAA;AAC7D,cAAc,iDAAiD,CAAA;AAC/D,cAAc,wCAAwC,CAAA;AACtD,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,kCAAkC,CAAA;AAChD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,mCAAmC,CAAA;AACjD,cAAc,wCAAwC,CAAA;AACtD,cAAc,uCAAuC,CAAA;AACrD,cAAc,wCAAwC,CAAA;AACtD,cAAc,kCAAkC,CAAA;AAChD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,mCAAmC,CAAA;AACjD,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AACvD,cAAc,wCAAwC,CAAA;AACtD,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,sCAAsC,CAAA;AACpD,cAAc,qCAAqC,CAAA;AACnD,cAAc,sCAAsC,CAAA;AACpD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,qCAAqC,CAAA;AACnD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,qCAAqC,CAAA;AACnD,cAAc,oCAAoC,CAAA;AAClD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,kCAAkC,CAAA;AAChD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,kCAAkC,CAAA;AAChD,cAAc,uCAAuC,CAAA;AACrD,cAAc,sCAAsC,CAAA;AACpD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,sCAAsC,CAAA;AACpD,cAAc,qCAAqC,CAAA;AACnD,cAAc,qCAAqC,CAAA;AACnD,cAAc,oCAAoC,CAAA;AAClD,cAAc,qCAAqC,CAAA;AACnD,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,6BAA6B,CAAA;AAE3C,cAAc,uBAAuB,CAAA;AACrC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,0BAA0B,CAAA;AACxC,cAAc,0BAA0B,CAAA;AACxC,cAAc,+BAA+B,CAAA;AAC7C,cAAc,mBAAmB,CAAA;AAEjC,cAAc,2BAA2B,CAAA;AACzC,cAAc,0BAA0B,CAAA;AAExC,cAAc,2BAA2B,CAAA;AAEzC,cAAc,iCAAiC,CAAA;AAC/C,cAAc,8BAA8B,CAAA;AAC5C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,oCAAoC,CAAA;AAClD,cAAc,sCAAsC,CAAA;AACpD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,gCAAgC,CAAA;AAE9C,cAAc,4BAA4B,CAAA;AAC1C,cAAc,2BAA2B,CAAA;AACzC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,4BAA4B,CAAA;AAC1C,cAAc,uCAAuC,CAAA;AACrD,cAAc,sCAAsC,CAAA;AACpD,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAChD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AACvD,cAAc,wCAAwC,CAAA;AACtD,cAAc,yCAAyC,CAAA;AACvD,cAAc,2CAA2C,CAAA;AACzD,cAAc,0CAA0C,CAAA;AACxD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AAEjD,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,0BAA0B,CAAA;AACxC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uCAAuC,CAAA;AACrD,cAAc,sCAAsC,CAAA;AACpD,cAAc,oCAAoC,CAAA;AAClD,cAAc,mCAAmC,CAAA;AACjD,cAAc,oCAAoC,CAAA;AAClD,cAAc,iCAAiC,CAAA;AAC/C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,8BAA8B,CAAA;AAC5C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,gCAAgC,CAAA;AAC9C,cAAc,2BAA2B,CAAA;AAEzC,cAAc,oCAAoC,CAAA;AAElD,cAAc,kBAAkB,CAAA;AAChC,cAAc,sBAAsB,CAAA;AACpC,cAAc,mBAAmB,CAAA;AAEjC,cAAc,YAAY,CAAA;AAC1B,cAAc,YAAY,CAAA;AAE1B,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;AAEjD,eAAe,SAAS,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AutoCad files sometimes use an indexed color value between 1 and 255 inclusive.
|
|
3
|
+
* Each value corresponds to a color. index 1 is red, that is 16711680 or 0xFF0000.
|
|
4
|
+
* index 0 and 256, while included in this array, are actually reserved for inheritance
|
|
5
|
+
* values in AutoCad so they should not be used for index color lookups.
|
|
6
|
+
*/
|
|
7
|
+
declare const _default: number[];
|
|
8
|
+
export default _default;
|
|
9
|
+
//# sourceMappingURL=AutoCadColorIndex.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutoCadColorIndex.d.ts","sourceRoot":"","sources":["../../../../src/parser/AutoCadColorIndex.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;;AAEH,wBAgCC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export interface ScannerGroup {
|
|
2
|
+
code: number;
|
|
3
|
+
value: any;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* DxfArrayScanner
|
|
7
|
+
*
|
|
8
|
+
* Based off the AutoCad 2012 DXF Reference
|
|
9
|
+
* http://images.autodesk.com/adsk/files/autocad_2012_pdf_dxf-reference_enu.pdf
|
|
10
|
+
*
|
|
11
|
+
* Reads through an array representing lines of a dxf file. Takes an array and
|
|
12
|
+
* provides an easy interface to extract group code and value pairs.
|
|
13
|
+
* @param data - an array where each element represents a line in the dxf file
|
|
14
|
+
* @constructor
|
|
15
|
+
*/
|
|
16
|
+
export declare class DxfArrayScanner {
|
|
17
|
+
_data: string[];
|
|
18
|
+
debug: boolean;
|
|
19
|
+
private _pointer;
|
|
20
|
+
private _eof;
|
|
21
|
+
lastReadGroup: ScannerGroup;
|
|
22
|
+
constructor(_data: string[], debug?: boolean);
|
|
23
|
+
next(): {
|
|
24
|
+
code: number;
|
|
25
|
+
value: string | number | boolean;
|
|
26
|
+
};
|
|
27
|
+
peek(): ScannerGroup;
|
|
28
|
+
rewind(numberOfGroups?: number | undefined): void;
|
|
29
|
+
/**
|
|
30
|
+
* Returns true if there is another code/value pair (2 elements in the array).
|
|
31
|
+
* @returns {boolean}
|
|
32
|
+
*/
|
|
33
|
+
hasNext(): boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Returns true if the scanner is at the end of the array
|
|
36
|
+
* @returns {boolean}
|
|
37
|
+
*/
|
|
38
|
+
isEOF(): boolean;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Parse a value to its proper type.
|
|
42
|
+
* See pages 3 - 10 of the AutoCad DXF 2012 reference given at the top of this file
|
|
43
|
+
*
|
|
44
|
+
* @param code
|
|
45
|
+
* @param value
|
|
46
|
+
* @returns {*}
|
|
47
|
+
*/
|
|
48
|
+
export declare function parseGroupValue(code: number, value: string, isDebugMode?: boolean): string | number | boolean;
|
|
49
|
+
//# sourceMappingURL=DxfArrayScanner.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DxfArrayScanner.d.ts","sourceRoot":"","sources":["../../../../src/parser/DxfArrayScanner.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,GAAG,CAAA;CACX;AAED;;;;;;;;;;GAUG;AACH,qBAAa,eAAe;IAOjB,KAAK,EAAE,MAAM,EAAE;IACf,KAAK;IAPd,OAAO,CAAC,QAAQ,CAAQ;IACxB,OAAO,CAAC,IAAI,CAAS;IAErB,aAAa,EAAE,YAAY,CAAwB;gBAG1C,KAAK,EAAE,MAAM,EAAE,EACf,KAAK,UAAQ;IAMtB,IAAI;;;;IA8BJ,IAAI;IAuBJ,MAAM,CAAC,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS;IAK1C;;;OAGG;IACH,OAAO;IASP;;;OAGG;IACH,KAAK;CAGN;AAED;;;;;;;GAOG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,EACb,WAAW,UAAQ,6BAiCpB"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ParsedDxf } from './types.ts';
|
|
2
|
+
import type { Readable } from 'readable-stream';
|
|
3
|
+
/** Options for {@link DxfParser} construction. */
|
|
4
|
+
export declare class DxfParserOptions {
|
|
5
|
+
/** Encoding label.
|
|
6
|
+
* See https://developer.mozilla.org/en-US/docs/Web/API/Encoding_API/Encodings
|
|
7
|
+
*/
|
|
8
|
+
encoding: string;
|
|
9
|
+
/** Throw `TypeError` when encountering invalid encoded data when true. When false, the decoder
|
|
10
|
+
* will substitute malformed data with a replacement character.
|
|
11
|
+
*/
|
|
12
|
+
encodingFailureFatal: boolean;
|
|
13
|
+
/** Thumbnail image format.
|
|
14
|
+
* - 'base64': Base64-encoded string (default, ready for web display)
|
|
15
|
+
* - 'hex': Raw hexadecimal string
|
|
16
|
+
* - 'buffer': Node.js Buffer object
|
|
17
|
+
*/
|
|
18
|
+
thumbnailImageFormat: 'base64' | 'hex' | 'buffer';
|
|
19
|
+
}
|
|
20
|
+
export declare class DxfParser extends EventTarget {
|
|
21
|
+
private readonly _decoder;
|
|
22
|
+
private readonly _options;
|
|
23
|
+
constructor(options?: Partial<DxfParserOptions>);
|
|
24
|
+
parseSync(dxfString: string, isDebugMode?: boolean): ParsedDxf;
|
|
25
|
+
parseStream(stream: Readable): Promise<ParsedDxf>;
|
|
26
|
+
parseFromUrl(url: string, init?: RequestInit | undefined): Promise<ParsedDxf | null>;
|
|
27
|
+
private parseAll;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=DxfParser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DxfParser.d.ts","sourceRoot":"","sources":["../../../../src/parser/DxfParser.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA;AAC3C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAA;AAE/C,kDAAkD;AAClD,qBAAa,gBAAgB;IAC3B;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAU;IAC1B;;OAEG;IACH,oBAAoB,EAAE,OAAO,CAAQ;IACrC;;;;OAIG;IACH,oBAAoB,EAAE,QAAQ,GAAG,KAAK,GAAG,QAAQ,CAAW;CAC7D;AAED,qBAAa,SAAU,SAAQ,WAAW;IACxC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAa;IACtC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAkB;gBAE/B,OAAO,GAAE,OAAO,CAAC,gBAAgB,CAAM;IAQnD,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,WAAW,UAAQ,GAAG,SAAS;IAS5D,WAAW,CAAC,MAAM,EAAE,QAAQ;IAyBtB,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,WAAW,GAAG,SAAS;IAmB9D,OAAO,CAAC,QAAQ;CA6CjB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { DxfArrayScanner } from './DxfArrayScanner.ts';
|
|
2
|
+
/** Some entities may contain embedded object which is started by group 101. All the rest data until
|
|
3
|
+
* end of entity should not be interpreted as entity attributes. There is no documentation for this
|
|
4
|
+
* feature.
|
|
5
|
+
* @param scanner
|
|
6
|
+
*/
|
|
7
|
+
export declare function skipEmbeddedObject(scanner: DxfArrayScanner): void;
|
|
8
|
+
//# sourceMappingURL=ParseHelpers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ParseHelpers.d.ts","sourceRoot":"","sources":["../../../../src/parser/ParseHelpers.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAE3D;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,eAAe,QAW1D"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { DxfArrayScanner, ScannerGroup } from '../DxfArrayScanner.ts';
|
|
2
|
+
export declare function parseBlocks(curr: ScannerGroup, scanner: DxfArrayScanner): any;
|
|
3
|
+
export declare function parseBlock(curr: ScannerGroup, scanner: DxfArrayScanner): any;
|
|
4
|
+
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/blocks/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAM1E,wBAAgB,WAAW,CAAC,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,eAAe,OAqBvE;AAED,wBAAgB,UAAU,CAAC,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,eAAe,OA0DtE"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Point3D } from '../../types/shared.ts';
|
|
2
|
+
import type { CommonDxfEntity } from '../entities/shared.ts';
|
|
3
|
+
export interface DxfBlock {
|
|
4
|
+
type: number;
|
|
5
|
+
name: string;
|
|
6
|
+
name2: string;
|
|
7
|
+
handle: string;
|
|
8
|
+
ownerHandle: string;
|
|
9
|
+
layer: string;
|
|
10
|
+
position: Point3D;
|
|
11
|
+
paperSpace: boolean;
|
|
12
|
+
xrefPath: string;
|
|
13
|
+
entities?: CommonDxfEntity[];
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/blocks/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAA;AACpD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AAE5D,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,WAAW,EAAE,MAAM,CAAA;IACnB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,OAAO,CAAA;IACjB,UAAU,EAAE,OAAO,CAAA;IACnB,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,CAAC,EAAE,eAAe,EAAE,CAAA;CAC7B"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare enum ProxyCapabilityFlag {
|
|
2
|
+
NotAllowed = 0,
|
|
3
|
+
AllowErase = 1,
|
|
4
|
+
AllowTransform = 2,
|
|
5
|
+
AllowChangeColor = 4,
|
|
6
|
+
AllowChangeLayer = 8,
|
|
7
|
+
AllowChangeLinetype = 16,
|
|
8
|
+
AllowChangeLinetypeScale = 32,
|
|
9
|
+
AllowChangeVisibility = 64,
|
|
10
|
+
AllowClone = 128,
|
|
11
|
+
AllowChangeLineweight = 256,
|
|
12
|
+
AllowChangePlotStyleName = 512,
|
|
13
|
+
AllowAllExceptClone = 895,
|
|
14
|
+
AllowAll = 1023,
|
|
15
|
+
DisableProxyWarning = 1024,
|
|
16
|
+
R13FormatProxy = 32768
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=consts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../src/parser/classes/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC7B,UAAU,IAAM;IAChB,UAAU,IAAM;IAChB,cAAc,IAAM;IACpB,gBAAgB,IAAM;IACtB,gBAAgB,IAAM;IACtB,mBAAmB,KAAO;IAC1B,wBAAwB,KAAO;IAC/B,qBAAqB,KAAO;IAC5B,UAAU,MAAO;IACjB,qBAAqB,MAAQ;IAC7B,wBAAwB,MAAQ;IAChC,mBAAmB,MAAQ;IAC3B,QAAQ,OAAQ;IAChB,mBAAmB,OAAQ;IAC3B,cAAc,QAAS;CACxB"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { DXFParserSnippet } from '../shared/parserGenerator.ts';
|
|
2
|
+
export declare const DxfClassParserSnippets: DXFParserSnippet[];
|
|
3
|
+
export declare const parseDxfClass: import("../shared/parserGenerator.ts").DXFParser;
|
|
4
|
+
export declare const DxfClassesParserSnippets: DXFParserSnippet[];
|
|
5
|
+
export declare const parseDxfClasses: import("../shared/parserGenerator.ts").DXFParser;
|
|
6
|
+
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/classes/parser.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,gBAAgB,EAGjB,MAAM,8BAA8B,CAAA;AAErC,eAAO,MAAM,sBAAsB,EAAE,gBAAgB,EAoCpD,CAAA;AAED,eAAO,MAAM,aAAa,kDAAuC,CAAA;AAEjE,eAAO,MAAM,wBAAwB,EAAE,gBAAgB,EAetD,CAAA;AAED,eAAO,MAAM,eAAe,kDAAyC,CAAA"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
export interface DxfClass {
|
|
2
|
+
/**
|
|
3
|
+
* Name of the Class DXF record.
|
|
4
|
+
*
|
|
5
|
+
* It's always unique.
|
|
6
|
+
*
|
|
7
|
+
* Parsed by group code `1`
|
|
8
|
+
* */
|
|
9
|
+
name: string;
|
|
10
|
+
/**
|
|
11
|
+
* C++ class name.
|
|
12
|
+
* Used to bind with software that defines object class behavior.
|
|
13
|
+
*
|
|
14
|
+
* It's always unique.
|
|
15
|
+
*
|
|
16
|
+
* Parsed by group code `2`
|
|
17
|
+
*/
|
|
18
|
+
cppClassName: string;
|
|
19
|
+
/**
|
|
20
|
+
* Application name. Posted in Alert box when a class definition
|
|
21
|
+
* listed in this section is not currently loaded.
|
|
22
|
+
*
|
|
23
|
+
* Parsed by group code `3`
|
|
24
|
+
*/
|
|
25
|
+
appName: string;
|
|
26
|
+
/**
|
|
27
|
+
* Bit-coded flag indicates the capabilities of this object as proxy.
|
|
28
|
+
*
|
|
29
|
+
* Parsed by group code `90`
|
|
30
|
+
*
|
|
31
|
+
* @see ProxyCapabilityFlag
|
|
32
|
+
*/
|
|
33
|
+
proxyFlag: number;
|
|
34
|
+
/**
|
|
35
|
+
* Instance count for a custom class
|
|
36
|
+
*
|
|
37
|
+
* Parsed by group code `91`
|
|
38
|
+
*/
|
|
39
|
+
instanceCount: number;
|
|
40
|
+
/**
|
|
41
|
+
* Indicates whether this class was proxy.
|
|
42
|
+
*
|
|
43
|
+
* - `true` if class was not loaded when this DXF file was created.
|
|
44
|
+
* - `false` otherwise.
|
|
45
|
+
*
|
|
46
|
+
* Parsed by group code `280`
|
|
47
|
+
*/
|
|
48
|
+
wasProxy: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Indicates whether this class is an entity.
|
|
51
|
+
*
|
|
52
|
+
* - `true` if class was derived from `AcDbEntity` class, and can be included
|
|
53
|
+
* in `BLOCKS` and `ENTITIES` sections.
|
|
54
|
+
* - `false` otherwise.
|
|
55
|
+
*
|
|
56
|
+
* Parsed by group code `281`
|
|
57
|
+
*/
|
|
58
|
+
isEntity: boolean;
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/classes/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB;;;;;;SAMK;IACL,IAAI,EAAE,MAAM,CAAA;IACZ;;;;;;;OAOG;IACH,YAAY,EAAE,MAAM,CAAA;IACpB;;;;;OAKG;IACH,OAAO,EAAE,MAAM,CAAA;IACf;;;;;;OAMG;IACH,SAAS,EAAE,MAAM,CAAA;IACjB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAA;IACrB;;;;;;;OAOG;IACH,QAAQ,EAAE,OAAO,CAAA;IACjB;;;;;;;;OAQG;IACH,QAAQ,EAAE,OAAO,CAAA;CAClB"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
|
|
2
|
+
export declare class ArcEntityParser {
|
|
3
|
+
static ForEntityName: string;
|
|
4
|
+
private parser;
|
|
5
|
+
parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): any;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/arc/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAwD7E,qBAAa,eAAe;IAC1B,MAAM,CAAC,aAAa,SAAQ;IAC5B,OAAO,CAAC,MAAM,CAA0D;IAExE,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY;CAKzD"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Point3D } from '../../../types/shared.ts';
|
|
2
|
+
import type { CommonDxfEntity } from '../shared.ts';
|
|
3
|
+
export interface ArcEntity extends CommonDxfEntity {
|
|
4
|
+
type: 'ARC';
|
|
5
|
+
subclassMarker: 'AcDbArc';
|
|
6
|
+
thickness: number;
|
|
7
|
+
center: Point3D;
|
|
8
|
+
radius: number;
|
|
9
|
+
startAngle: number;
|
|
10
|
+
endAngle: number;
|
|
11
|
+
extrusionDirection: Point3D;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/arc/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,SAAU,SAAQ,eAAe;IAChD,IAAI,EAAE,KAAK,CAAA;IACX,cAAc,EAAE,SAAS,CAAA;IACzB,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,EAAE,MAAM,CAAA;IACd,UAAU,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,MAAM,CAAA;IAChB,kBAAkB,EAAE,OAAO,CAAA;CAC5B"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The type of symbol to use in the arc length dimension's text string.
|
|
3
|
+
*
|
|
4
|
+
* This can be exist in `xdata` with group code `90`. Not sure if it can exist directly in the entity.
|
|
5
|
+
*
|
|
6
|
+
* @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-ManagedRefGuide-Autodesk_AutoCAD_DatabaseServices_ArcDimension_ArcSymbolType
|
|
7
|
+
*/
|
|
8
|
+
export declare enum ArcSymbolType {
|
|
9
|
+
BeforeText = 0,
|
|
10
|
+
AboveText = 1,
|
|
11
|
+
None = 2
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=consts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/arc_dimension/consts.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,oBAAY,aAAa;IACvB,UAAU,IAAI;IACd,SAAS,IAAI;IACb,IAAI,IAAI;CACT"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
|
|
2
|
+
import { type DXFParserSnippet } from '../../shared/parserGenerator.ts';
|
|
3
|
+
import type { ArcDimensionEntity } from './types.ts';
|
|
4
|
+
export declare const ArcDimensionEntitySnippet: DXFParserSnippet[];
|
|
5
|
+
export declare class ArcDimensionParser {
|
|
6
|
+
static ForEntityName: string;
|
|
7
|
+
parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): ArcDimensionEntity;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=parser.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/arc_dimension/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAE7E,OAAO,EACL,KAAK,gBAAgB,EAKtB,MAAM,iCAAiC,CAAA;AAGxC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAA;AAEpD,eAAO,MAAM,yBAAyB,EAAE,gBAAgB,EA6DvD,CAAA;AAED,qBAAa,kBAAkB;IAC7B,MAAM,CAAC,aAAa,SAAkB;IAEtC,WAAW,CACT,OAAO,EAAE,eAAe,EACxB,IAAI,EAAE,YAAY,GACjB,kBAAkB;CAMtB"}
|