dxf-json 0.10.1 → 0.14.1
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 +196 -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 +35 -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/acadProxyEntity/consts.d.ts +11 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/parser.d.ts +7 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/types.d.ts +34 -0
- package/dist/cjs/types/parser/entities/acadProxyEntity/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 +458 -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/shape/parser.d.ts +21 -0
- package/dist/cjs/types/parser/entities/shape/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/shape/types.d.ts +15 -0
- package/dist/cjs/types/parser/entities/shape/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/entities/shared.d.ts +84 -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 +73 -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/dimassoc/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/dimassoc/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/dimassoc/types.d.ts +105 -0
- package/dist/cjs/types/parser/objects/dimassoc/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/group/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/group/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/group/types.d.ts +34 -0
- package/dist/cjs/types/parser/objects/group/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/imageDef/consts.d.ts +6 -0
- package/dist/cjs/types/parser/objects/imageDef/consts.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/imageDef/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/imageDef/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/imageDef/types.d.ts +13 -0
- package/dist/cjs/types/parser/objects/imageDef/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layer_filter/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/layer_filter/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layer_filter/types.d.ts +25 -0
- package/dist/cjs/types/parser/objects/layer_filter/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layer_index/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/layer_index/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/layer_index/types.d.ts +39 -0
- package/dist/cjs/types/parser/objects/layer_index/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/mleaderStyle/parser.d.ts +3 -0
- package/dist/cjs/types/parser/objects/mleaderStyle/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/mleaderStyle/types.d.ts +206 -0
- package/dist/cjs/types/parser/objects/mleaderStyle/types.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/mlineStyle/parser.d.ts +10 -0
- package/dist/cjs/types/parser/objects/mlineStyle/parser.d.ts.map +1 -0
- package/dist/cjs/types/parser/objects/mlineStyle/types.d.ts +89 -0
- package/dist/cjs/types/parser/objects/mlineStyle/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/asciiDxf.d.ts +6 -0
- package/dist/cjs/types/parser/shared/asciiDxf.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/binaryDxf.d.ts +18 -0
- package/dist/cjs/types/parser/shared/binaryDxf.d.ts.map +1 -0
- package/dist/cjs/types/parser/shared/dxfInput.d.ts +13 -0
- package/dist/cjs/types/parser/shared/dxfInput.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 +38 -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 +50 -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 +196 -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 +35 -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/acadProxyEntity/consts.d.ts +11 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/parser.d.ts +7 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/types.d.ts +34 -0
- package/dist/esm/types/parser/entities/acadProxyEntity/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 +458 -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/shape/parser.d.ts +21 -0
- package/dist/esm/types/parser/entities/shape/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/shape/types.d.ts +15 -0
- package/dist/esm/types/parser/entities/shape/types.d.ts.map +1 -0
- package/dist/esm/types/parser/entities/shared.d.ts +84 -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 +73 -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/dimassoc/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/dimassoc/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/dimassoc/types.d.ts +105 -0
- package/dist/esm/types/parser/objects/dimassoc/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/group/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/group/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/group/types.d.ts +34 -0
- package/dist/esm/types/parser/objects/group/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/imageDef/consts.d.ts +6 -0
- package/dist/esm/types/parser/objects/imageDef/consts.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/imageDef/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/imageDef/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/imageDef/types.d.ts +13 -0
- package/dist/esm/types/parser/objects/imageDef/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layer_filter/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/layer_filter/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layer_filter/types.d.ts +25 -0
- package/dist/esm/types/parser/objects/layer_filter/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layer_index/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/layer_index/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/layer_index/types.d.ts +39 -0
- package/dist/esm/types/parser/objects/layer_index/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/mleaderStyle/parser.d.ts +3 -0
- package/dist/esm/types/parser/objects/mleaderStyle/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/mleaderStyle/types.d.ts +206 -0
- package/dist/esm/types/parser/objects/mleaderStyle/types.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/mlineStyle/parser.d.ts +10 -0
- package/dist/esm/types/parser/objects/mlineStyle/parser.d.ts.map +1 -0
- package/dist/esm/types/parser/objects/mlineStyle/types.d.ts +89 -0
- package/dist/esm/types/parser/objects/mlineStyle/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/asciiDxf.d.ts +6 -0
- package/dist/esm/types/parser/shared/asciiDxf.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/binaryDxf.d.ts +18 -0
- package/dist/esm/types/parser/shared/binaryDxf.d.ts.map +1 -0
- package/dist/esm/types/parser/shared/dxfInput.d.ts +13 -0
- package/dist/esm/types/parser/shared/dxfInput.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 +38 -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 +50 -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 +80 -78
- 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
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/dimStyle/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,oBAAoB,EACpB,uBAAuB,EACvB,iBAAiB,EACjB,uBAAuB,EACvB,qBAAqB,EACrB,aAAa,EACb,wBAAwB,EACxB,+BAA+B,EAClC,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD;;;;;GAKG;AACH,MAAM,MAAM,gBAAgB,GACtB,SAAS,GACT,UAAU,GACV,iBAAiB,GACjB,kBAAkB,GAClB,kBAAkB,GAClB,UAAU,GACV,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,OAAO,GACP,OAAO,GACP,QAAQ,GACR,WAAW,GACX,UAAU,GACV,aAAa,GACb,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,WAAW,GACX,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,SAAS,GACT,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,WAAW,GACX,QAAQ,GACR,SAAS,GACT,SAAS,GACT,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,SAAS,GACT,SAAS,GACT,SAAS,GACT,SAAS,GACT,SAAS,GACT,QAAQ,GACR,SAAS,GACT,SAAS,GACT,UAAU,GACV,UAAU,GACV,SAAS,GACT,UAAU,GACV,SAAS,GACT,UAAU,GACV,SAAS,GACT,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,SAAS,GACT,SAAS,GACT,UAAU,GACV,QAAQ,GACR,QAAQ,GACR,UAAU,GACV,UAAU,GACV,iBAAiB,GACjB,UAAU,GACV,WAAW,GACX,QAAQ,GACR,SAAS,GACT,SAAS,GACT,UAAU,GACV,UAAU,GACV,UAAU,GACV,QAAQ,GACR,QAAQ,CAAA;AAEd,MAAM,WAAW,sBAAsB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC/B,oBAAoB,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC1C;AAED;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG;IAC5B;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;;;;;;OAWG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;OAQG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;;OAUG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;OAMG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;;;;;;OAcG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;OAOG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;;;;OAYG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;;;;;;;;;;;;OAeG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;;;OAMG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;;OAUG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;;;;;OAMG;IACH,QAAQ,EAAE,iBAAiB,CAAC;IACxB;;;;;;;;;;;;GAYD;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;;;;;OAQG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;OAQG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;;OAUG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;OASG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;OASG;IACH,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd;;;;;;;;;OASG;IACH,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd;;;;;;OAMG;IACH,MAAM,EAAE,qBAAqB,CAAC;IAClC;;;;;;;;WAQO;IACH,MAAM,EAAE,wBAAwB,CAAC;IACjC;;;;;;OAMG;IACH,OAAO,EAAE,+BAA+B,CAAC;IACzC;;;;;;OAMG;IACH,SAAS,EAAE,aAAa,CAAA;IACxB;;;;;;OAMG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;;;;OAYG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;OASG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;OASG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;;;;;;;;;OAgBG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;;;;;;OAaG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;;;OAWG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;;;;;;;;;OAgBG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;OAMG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;;;;;;;;OASG;IACH,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd;;;;;;;;;OASG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;;;;;;;;OAeG;IACH,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;IACf;;;;;;;;;OASG;IACH,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd;;;;;;;;;;;;OAYG;IACH,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd;;;;;;;;;OASG;IACH,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;IACf;;;;;;;;;;;OAWG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;;OASG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;OAQG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;;OASG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;;;;;;OASG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;;;OAWG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;OAMG;IACH,OAAO,EAAE,aAAa,CAAC;IACvB;;;;;;OAMG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;OAMG;IACH,QAAQ,EAAE,oBAAoB,CAAC;IAC/B;;;;;;OAMG;IACH,OAAO,EAAE,uBAAuB,CAAC;IACjC;;;;;;OAMG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;;;OAQG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;OAMG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;OAMG;IACH,OAAO,EAAE,uBAAuB,CAAC;IACjC;;;;;;;;;;;;OAYG;IACH,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd;;;;;;;;;;;;OAYG;IACH,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd;;;;;;;;;;OAUG;IACH,OAAO,EAAE,qBAAqB,CAAC;IAC/B;;;;;;;;OAQG;IACH,OAAO,EAAE,wBAAwB,CAAC;IAClC;;;;;;;;OAQG;IACH,OAAO,EAAE,wBAAwB,CAAC;IAClC;;;;;;OAMG;IACH,QAAQ,EAAE,wBAAwB,CAAC;IACnC;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;;;;;;OASG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;OAMG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;;;OAQG;IACH,QAAQ,EAAE,CAAC,GAAG,CAAC,CAAC;IAChB;;;;;;;;;OASG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;;;;;OAMG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;;;;;;OAWG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;OAQG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;OAQG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;;;;OAUG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;;;OAMG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;OAMG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;;OAOG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;;;;;;;;;;;;;;OAiBG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;;;;;;;;;;;;OAiBG;IACH,MAAM,EAAE,MAAM,CAAC;CAClB,CAAA;AAED,MAAM,MAAM,mBAAmB,GAAG,iBAAiB,GAAG,mBAAmB,GAAG;IACxE,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,yBAAyB,CAAC;CAC7C,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export * from './blockRecord';
|
|
2
|
-
export * from './dimStyle';
|
|
3
|
-
export * from './layer';
|
|
4
|
-
export * from './ltype';
|
|
5
|
-
export * from './style';
|
|
6
|
-
export * from './vport';
|
|
7
|
-
export type * from './types';
|
|
8
|
-
export * from './parser';
|
|
9
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/parser/tables/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/layer/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/layer/parser.ts"],"names":[],"mappings":"AAyDA,eAAO,MAAM,eAAe,kDAAyC,CAAC"}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { ColorIndex } from '../../../types';
|
|
2
|
-
import type { CommonDxfTableEntry } from '../types';
|
|
3
|
-
export interface LayerTableEntry extends CommonDxfTableEntry {
|
|
4
|
-
subclassMarker: 'AcDbLayerTableRecord';
|
|
5
|
-
name: string;
|
|
6
|
-
standardFlag: number;
|
|
7
|
-
colorIndex: ColorIndex;
|
|
8
|
-
lineType: string;
|
|
9
|
-
isPlotting: boolean;
|
|
10
|
-
lineweight: number;
|
|
11
|
-
plotStyleNameObjectId?: string;
|
|
12
|
-
materialObjectId?: string;
|
|
13
|
-
}
|
|
14
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/layer/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,WAAW,eAAgB,SAAQ,mBAAmB;IACxD,cAAc,EAAE,sBAAsB,CAAC;IACvC,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,UAAU,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC7B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/ltype/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,mBAAmB;IAC3B,MAAM,IAAI;IACV,kBAAkB,IAAI;IACtB,cAAc,IAAI;IAClB,eAAe,IAAI;CACtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/ltype/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/ltype/parser.ts"],"names":[],"mappings":"AA6GA,eAAO,MAAM,eAAe,kDAAyC,CAAC"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import type { CommonDxfTableEntry } from '../types';
|
|
2
|
-
export interface LTypeTableEntry extends CommonDxfTableEntry {
|
|
3
|
-
subclassMarker: 'AcDbLinetypeTableRecord';
|
|
4
|
-
name: string;
|
|
5
|
-
standardFlag: number;
|
|
6
|
-
description: string;
|
|
7
|
-
numberOfLineTypes: number;
|
|
8
|
-
totalPatternLength: number;
|
|
9
|
-
pattern?: LineTypeElement[];
|
|
10
|
-
}
|
|
11
|
-
export interface LineTypeElement {
|
|
12
|
-
elementLength: number;
|
|
13
|
-
elementTypeFlag: number;
|
|
14
|
-
shapeNumber?: number;
|
|
15
|
-
styleObjectId?: string;
|
|
16
|
-
scale?: number;
|
|
17
|
-
rotation?: number;
|
|
18
|
-
offsetX?: number;
|
|
19
|
-
offsetY?: number;
|
|
20
|
-
text?: string;
|
|
21
|
-
}
|
|
22
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/ltype/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,WAAW,eAAgB,SAAQ,mBAAmB;IACxD,cAAc,EAAE,yBAAyB,CAAC;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,OAAO,CAAC,EAAE,eAAe,EAAE,CAAC;CAC/B;AAED,MAAM,WAAW,eAAe;IAC5B,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../src/parser/tables/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAiExE,wBAAgB,WAAW,CAAC,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,eAAe,OAmCvE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../../../src/parser/tables/shared.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,gBAAgB,EAEnB,MAAM,2BAA2B,CAAC;AAGnC,eAAO,MAAM,8BAA8B,EAAE,gBAAgB,EAyB5D,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/style/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/style/parser.ts"],"names":[],"mappings":"AAqEA,eAAO,MAAM,eAAe,kDAAyC,CAAC"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { CommonDxfTableEntry } from '../types';
|
|
2
|
-
export interface StyleTableEntry extends CommonDxfTableEntry {
|
|
3
|
-
subclassMarker: 'AcDbTextStyleTableRecord';
|
|
4
|
-
name: string;
|
|
5
|
-
standardFlag: number;
|
|
6
|
-
fixedTextHeight: number;
|
|
7
|
-
widthFactor: number;
|
|
8
|
-
obliqueAngle: number;
|
|
9
|
-
textGenerationFlag: number;
|
|
10
|
-
lastHeight: number;
|
|
11
|
-
font: string;
|
|
12
|
-
bigFont: string;
|
|
13
|
-
extendedFont?: string;
|
|
14
|
-
}
|
|
15
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/style/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,WAAW,eAAgB,SAAQ,mBAAmB;IACxD,cAAc,EAAE,0BAA0B,CAAC;IAC3C,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export interface DxfTable<T extends CommonDxfTableEntry> {
|
|
2
|
-
subclassMarker: 'AcDbSymbolTable';
|
|
3
|
-
name: string;
|
|
4
|
-
handle: string;
|
|
5
|
-
ownerDictionaryIds?: string[];
|
|
6
|
-
ownerObjectId: string;
|
|
7
|
-
maxNumberOfEntries: number;
|
|
8
|
-
entries: T[];
|
|
9
|
-
}
|
|
10
|
-
export interface CommonDxfTableEntry {
|
|
11
|
-
name: string;
|
|
12
|
-
handle: string;
|
|
13
|
-
ownerObjectId: string;
|
|
14
|
-
}
|
|
15
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/parser/tables/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ,CAAC,CAAC,SAAS,mBAAmB;IACnD,cAAc,EAAE,iBAAiB,CAAC;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,OAAO,EAAE,CAAC,EAAE,CAAC;CAChB;AAED,MAAM,WAAW,mBAAmB;IAChC,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;CACzB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/vport/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/vport/parser.ts"],"names":[],"mappings":"AA4MA,eAAO,MAAM,eAAe,kDAAyC,CAAC"}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import type { RenderMode, OrthographicType, DefaultLightingType } from '../../../consts';
|
|
2
|
-
import type { Point2D, Point3D } from '../../../types';
|
|
3
|
-
import type { CommonDxfTableEntry } from '../types';
|
|
4
|
-
export interface VPortTableEntry extends CommonDxfTableEntry {
|
|
5
|
-
subclassMarker: 'AcDbViewportTableRecord';
|
|
6
|
-
name: string;
|
|
7
|
-
standardFlag: number;
|
|
8
|
-
lowerLeftCorner: Point2D;
|
|
9
|
-
upperRightCorner: Point2D;
|
|
10
|
-
center: Point2D;
|
|
11
|
-
snapBasePoint: Point2D;
|
|
12
|
-
snapSpacing: Point2D;
|
|
13
|
-
gridSpacing: Point2D;
|
|
14
|
-
viewDirectionFromTarget: Point3D;
|
|
15
|
-
viewTarget: Point3D;
|
|
16
|
-
lensLength: number;
|
|
17
|
-
frontClippingPlane: number;
|
|
18
|
-
backClippingPlane: number;
|
|
19
|
-
viewHeight: number;
|
|
20
|
-
snapRotationAngle: number;
|
|
21
|
-
viewTwistAngle: number;
|
|
22
|
-
circleSides: number;
|
|
23
|
-
frozenLayers: string[];
|
|
24
|
-
styleSheet: string;
|
|
25
|
-
renderMode: RenderMode;
|
|
26
|
-
viewMode: number;
|
|
27
|
-
ucsIconSetting: number;
|
|
28
|
-
ucsOrigin: Point3D;
|
|
29
|
-
ucsXAxis: Point3D;
|
|
30
|
-
ucsYAxis: Point3D;
|
|
31
|
-
orthographicType: OrthographicType;
|
|
32
|
-
elevation: number;
|
|
33
|
-
shadePlotSetting: number;
|
|
34
|
-
majorGridLines: number;
|
|
35
|
-
backgroundObjectId?: string;
|
|
36
|
-
shadePlotObjectId?: string;
|
|
37
|
-
visualStyleObjectId?: string;
|
|
38
|
-
isDefaultLightingOn: boolean;
|
|
39
|
-
defaultLightingType: DefaultLightingType;
|
|
40
|
-
brightness: number;
|
|
41
|
-
contrast: number;
|
|
42
|
-
ambientColor?: number;
|
|
43
|
-
}
|
|
44
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/vport/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,UAAU,EACV,gBAAgB,EAChB,mBAAmB,EACtB,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACvD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,WAAW,eAAgB,SAAQ,mBAAmB;IACxD,cAAc,EAAE,yBAAyB,CAAC;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,OAAO,CAAC;IACzB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,MAAM,EAAE,OAAO,CAAC;IAChB,aAAa,EAAE,OAAO,CAAC;IACvB,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,EAAE,OAAO,CAAC;IACrB,uBAAuB,EAAE,OAAO,CAAC;IACjC,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,iBAAiB,EAAE,MAAM,CAAC;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,UAAU,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,OAAO,CAAC;IAClB,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,mBAAmB,EAAE,OAAO,CAAC;IAC7B,mBAAmB,EAAE,mBAAmB,CAAC;IACzC,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { DxfHeader } from '../types/dxfHeader';
|
|
2
|
-
import type { DxfBlock } from './blocks/types';
|
|
3
|
-
import type { CommonDxfEntity } from './entities/shared';
|
|
4
|
-
import type { CommonDXFObject } from './objects';
|
|
5
|
-
import type { BlockRecordTableEntry, DimStylesTableEntry, LayerTableEntry, LTypeTableEntry, StyleTableEntry, DxfTable, VPortTableEntry } from './tables';
|
|
6
|
-
export interface ParsedDxf {
|
|
7
|
-
header: DxfHeader;
|
|
8
|
-
blocks: Record<string, DxfBlock>;
|
|
9
|
-
entities: CommonDxfEntity[];
|
|
10
|
-
tables: {
|
|
11
|
-
BLOCK_RECORD?: DxfTable<BlockRecordTableEntry>;
|
|
12
|
-
DIMSTYLE?: DxfTable<DimStylesTableEntry>;
|
|
13
|
-
STYLE?: DxfTable<StyleTableEntry>;
|
|
14
|
-
LAYER?: DxfTable<LayerTableEntry>;
|
|
15
|
-
LTYPE?: DxfTable<LTypeTableEntry>;
|
|
16
|
-
VPORT?: DxfTable<VPortTableEntry>;
|
|
17
|
-
};
|
|
18
|
-
objects: {
|
|
19
|
-
byName: Record<string, CommonDXFObject[]>;
|
|
20
|
-
byTree?: CommonDXFObject;
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/parser/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AACjD,OAAO,KAAK,EAAE,qBAAqB,EAAE,mBAAmB,EAAE,eAAe,EAAE,eAAe,EAAE,eAAe,EAAE,QAAQ,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEzJ,MAAM,WAAW,SAAS;IACtB,MAAM,EAAE,SAAS,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IACjC,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B,MAAM,EAAE;QACJ,YAAY,CAAC,EAAE,QAAQ,CAAC,qBAAqB,CAAC,CAAC;QAC/C,QAAQ,CAAC,EAAE,QAAQ,CAAC,mBAAmB,CAAC,CAAC;QACzC,KAAK,CAAC,EAAE,QAAQ,CAAC,eAAe,CAAC,CAAC;QAClC,KAAK,CAAC,EAAE,QAAQ,CAAC,eAAe,CAAC,CAAC;QAClC,KAAK,CAAC,EAAE,QAAQ,CAAC,eAAe,CAAC,CAAC;QAClC,KAAK,CAAC,EAAE,QAAQ,CAAC,eAAe,CAAC,CAAC;KACrC,CAAC;IACF,OAAO,EAAE;QACL,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,EAAE,CAAC,CAAC;QAC1C,MAAM,CAAC,EAAE,eAAe,CAAC;KAC5B,CAAC;CACL"}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import type { ParsedDxf } from "../parser/types";
|
|
2
|
-
type ErrorOptions = {
|
|
3
|
-
cause: Error;
|
|
4
|
-
} | undefined;
|
|
5
|
-
/** Options for {@link DxfStreamParser} construction. */
|
|
6
|
-
export declare class DxfStreamParserOptions {
|
|
7
|
-
/** Encoding label.
|
|
8
|
-
* See https://developer.mozilla.org/en-US/docs/Web/API/Encoding_API/Encodings
|
|
9
|
-
*/
|
|
10
|
-
encoding: string;
|
|
11
|
-
/** Throw `TypeError` when encountering invalid encoded data when true. When false, the decoder
|
|
12
|
-
* will substitute malformed data with a replacement character.
|
|
13
|
-
*/
|
|
14
|
-
encodingFailureFatal: boolean;
|
|
15
|
-
}
|
|
16
|
-
export declare class DxfParsingError extends Error {
|
|
17
|
-
readonly line: number;
|
|
18
|
-
constructor(msg: string, line: number, options?: ErrorOptions);
|
|
19
|
-
}
|
|
20
|
-
export declare class DxfStreamParser extends EventTarget {
|
|
21
|
-
dxf: ParsedDxf;
|
|
22
|
-
private readonly _decoder;
|
|
23
|
-
private readonly _pointParser;
|
|
24
|
-
constructor(options?: DxfStreamParserOptions);
|
|
25
|
-
private _finalChunkSeen;
|
|
26
|
-
private _curChunk;
|
|
27
|
-
private _curGroupCode;
|
|
28
|
-
private _curLineNum;
|
|
29
|
-
private _eof;
|
|
30
|
-
private _curValue;
|
|
31
|
-
private _curSection;
|
|
32
|
-
private _currVarName;
|
|
33
|
-
private Feed;
|
|
34
|
-
/** Feed next string chunk to the parser. */
|
|
35
|
-
private FeedString;
|
|
36
|
-
private _Finalize;
|
|
37
|
-
FeedFile(file: ArrayBuffer, abortSignal?: AbortSignal): Promise<void>;
|
|
38
|
-
private _ProcessCurChunk;
|
|
39
|
-
private _ConsumeCurChunkLines;
|
|
40
|
-
private _ProcessLine;
|
|
41
|
-
private _Error;
|
|
42
|
-
}
|
|
43
|
-
export {};
|
|
44
|
-
//# sourceMappingURL=DxfStreamParser.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DxfStreamParser.d.ts","sourceRoot":"","sources":["../../../src/stream-parser/DxfStreamParser.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAGjD,KAAK,YAAY,GACb;IACE,KAAK,EAAE,KAAK,CAAC;CACd,GACD,SAAS,CAAC;AAEd,wDAAwD;AACxD,qBAAa,sBAAsB;IACjC;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAW;IAC3B;;OAEG;IACH,oBAAoB,EAAE,OAAO,CAAS;CACvC;AAED,qBAAa,eAAgB,SAAQ,KAAK;IACxC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;gBAEV,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,YAAY;CAU9D;AAED,qBAAa,eAAgB,SAAQ,WAAW;IACvC,GAAG,EAAE,SAAS,CAUnB;IAEF,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAc;IACvC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAa;gBAE9B,OAAO,GAAE,sBAAqD;IAQ1E,OAAO,CAAC,eAAe,CAAkB;IACzC,OAAO,CAAC,SAAS,CAAc;IAC/B,OAAO,CAAC,aAAa,CAAuB;IAC5C,OAAO,CAAC,WAAW,CAAK;IAExB,OAAO,CAAC,IAAI,CAAS;IACrB,OAAO,CAAC,SAAS,CAAuC;IACxD,OAAO,CAAC,WAAW,CAAc;IACjC,OAAO,CAAC,YAAY,CAAc;IAElC,OAAO,CAAC,IAAI;IAOZ,4CAA4C;IAC5C,OAAO,CAAC,UAAU;IAalB,OAAO,CAAC,SAAS;IAEX,QAAQ,CAAC,IAAI,EAAE,WAAW,EAAE,WAAW,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC;IAW3E,OAAO,CAAC,gBAAgB;IAoCxB,OAAO,CAAE,qBAAqB;IA2B9B,OAAO,CAAC,YAAY;IAwCpB,OAAO,CAAC,MAAM;CAOf"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/stream-parser/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { ScannerGroup } from "../../parser/DxfArrayScanner";
|
|
2
|
-
import type { Point3D } from '../../types';
|
|
3
|
-
export declare class parsePoint {
|
|
4
|
-
point: Point3D;
|
|
5
|
-
startCode: number;
|
|
6
|
-
private code;
|
|
7
|
-
private value;
|
|
8
|
-
x: number | undefined;
|
|
9
|
-
y: number | undefined;
|
|
10
|
-
z: number | undefined;
|
|
11
|
-
constructor();
|
|
12
|
-
parseStart(point: ScannerGroup): void;
|
|
13
|
-
setPoint(point: ScannerGroup): {
|
|
14
|
-
x: number;
|
|
15
|
-
y: number;
|
|
16
|
-
z: number;
|
|
17
|
-
} | undefined;
|
|
18
|
-
reset(): void;
|
|
19
|
-
}
|
|
20
|
-
//# sourceMappingURL=parseData.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"parseData.d.ts","sourceRoot":"","sources":["../../../../src/stream-parser/streamShared/parseData.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAI3C,qBAAa,UAAU;IACZ,KAAK,UAAiB;IAEtB,SAAS,EAAE,MAAM,CAAK;IAC7B,OAAO,CAAC,IAAI,CAAa;IACzB,OAAO,CAAC,KAAK,CAAU;IAEvB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAa;IAClC,CAAC,EAAE,MAAM,GAAG,SAAS,CAAa;IAClC,CAAC,EAAE,MAAM,GAAG,SAAS,CAAa;;IAKlC,UAAU,CAAC,KAAK,EAAE,YAAY;IAI9B,QAAQ,CAAC,KAAK,EAAE,YAAY;;;;;IAiC5B,KAAK;CAKR"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"color.d.ts","sourceRoot":"","sources":["../../../src/types/color.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAC;AAEnE,MAAM,MAAM,UAAU,GAAG,SAAS,GAAG,MAAM,CAAC;AAE5C,MAAM,MAAM,aAAa,GAAG,OAAO,sBAAsB,GAAG,MAAM,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { Measurement } from '../consts';
|
|
2
|
-
import type { DefaultDxfHeaderVariables } from '../consts/header';
|
|
3
|
-
export type DxfHeaderVariable =
|
|
4
|
-
/** Hard-pointer ID to visual style while creating 3D solid primitives */
|
|
5
|
-
'DRAGVS'
|
|
6
|
-
/** Represents the ACI color index of the "interference objects" created during the INTERFERE command */
|
|
7
|
-
| 'INTERFERECOLOR'
|
|
8
|
-
/** Hard-pointer ID to the visual style for interference objects */
|
|
9
|
-
| 'INTERFEREOBJVS'
|
|
10
|
-
/** Hard-pointer ID to the visual style for the viewport during interference checking */
|
|
11
|
-
| 'INTERFEREVPVS' | 'OBSLTYPE'
|
|
12
|
-
/** Percent ambient/diffuse light; range 1-100 */
|
|
13
|
-
| 'SHADEDIF' | 'MEASUREMENT';
|
|
14
|
-
export type DxfHeader = typeof DefaultDxfHeaderVariables & {
|
|
15
|
-
MEASUREMENT: Measurement;
|
|
16
|
-
} & Record<string, any>;
|
|
17
|
-
//# sourceMappingURL=dxfHeader.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dxfHeader.d.ts","sourceRoot":"","sources":["../../../src/types/dxfHeader.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAC7C,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAC;AAGlE,MAAM,MAAM,iBAAiB;AACzB,yEAAyE;AACvE,QAAQ;AACV,wGAAwG;GACtG,gBAAgB;AAClB,mEAAmE;GACjE,gBAAgB;AAClB,wFAAwF;GACtF,eAAe,GACf,UAAU;AACZ,iDAAiD;GAC/C,UAAU,GACV,aAAa,CAAC;AAEpB,MAAM,MAAM,SAAS,GAAG,OAAO,yBAAyB,GAAG;IACvD,WAAW,EAAE,WAAW,CAAC;CAC5B,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC"}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export type * from './color';
|
|
2
|
-
export type * from './dxfHeader';
|
|
3
|
-
export interface Point2D {
|
|
4
|
-
x: number;
|
|
5
|
-
y: number;
|
|
6
|
-
}
|
|
7
|
-
export interface Point3D {
|
|
8
|
-
x: number;
|
|
9
|
-
y: number;
|
|
10
|
-
z: number;
|
|
11
|
-
}
|
|
12
|
-
export interface Bound {
|
|
13
|
-
minX: number;
|
|
14
|
-
minY: number;
|
|
15
|
-
maxX: number;
|
|
16
|
-
maxY: number;
|
|
17
|
-
}
|
|
18
|
-
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
19
|
-
export type Indexed<T, P extends string> = {
|
|
20
|
-
[key in P]: T;
|
|
21
|
-
} & {
|
|
22
|
-
index: number;
|
|
23
|
-
};
|
|
24
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,mBAAmB,aAAa,CAAC;AAEjC,MAAM,WAAW,OAAO;IACpB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,OAAO;IACpB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,KAAK;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,MAAM,YAAY,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GACvD,OAAO,CAAC,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;AAExB,MAAM,MAAM,OAAO,CAAC,CAAC,EAAE,CAAC,SAAS,MAAM,IAAI;KACtC,GAAG,IAAI,CAAC,GAAG,CAAC;CAChB,GAAG;IACA,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"debug.d.ts","sourceRoot":"","sources":["../../../src/utils/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"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import type { Point2D, Point3D } from '../types';
|
|
2
|
-
export declare function classify<T>(iterable: Iterable<T>, keySelector: (value: T) => string | undefined): Record<string, T[]>;
|
|
3
|
-
/**
|
|
4
|
-
* 정수 생성기
|
|
5
|
-
*
|
|
6
|
-
* @param start Inclusive
|
|
7
|
-
* @param end Exclusive
|
|
8
|
-
* @param increment Default = 1
|
|
9
|
-
*/
|
|
10
|
-
export declare function generateIntegers(start: number, end?: number, increment?: number): Generator<number, void, unknown>;
|
|
11
|
-
/**
|
|
12
|
-
* There might be some situation of ill conditioned points.
|
|
13
|
-
* This function ensure every values exists for possible
|
|
14
|
-
* missing data.
|
|
15
|
-
* @param point Any data parsed by `parsePoint`
|
|
16
|
-
*/
|
|
17
|
-
export declare function ensurePoint3D(point: Partial<Point2D | Point3D>): Point3D;
|
|
18
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,UAAU,CAAA;AAEhD,wBAAgB,QAAQ,CAAC,CAAC,EACtB,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,EACrB,WAAW,EAAE,CAAC,KAAK,EAAE,CAAC,KAAK,MAAM,GAAG,SAAS,uBAYhD;AAED;;;;;;GAMG;AACH,wBAAiB,gBAAgB,CAC7B,KAAK,EAAE,MAAM,EACb,GAAG,GAAE,MAAiB,EACtB,SAAS,GAAE,MAAU,oCAKxB;AAED;;;;;GAKG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,OAAO,CAAC,OAAO,GAAG,OAAO,CAAC,GAAG,OAAO,CAMxE"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|