dxf-json 0.10.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1088) hide show
  1. package/Readme.md +67 -18
  2. package/dist/cjs/bundle.cjs +3 -0
  3. package/dist/cjs/types/consts/block.d.ts.map +1 -0
  4. package/dist/cjs/types/consts/color.d.ts.map +1 -0
  5. package/dist/cjs/types/consts/config.d.ts.map +1 -0
  6. package/dist/cjs/types/consts/dimension.d.ts +166 -0
  7. package/dist/cjs/types/consts/dimension.d.ts.map +1 -0
  8. package/dist/cjs/types/consts/hatch.d.ts.map +1 -0
  9. package/dist/cjs/types/consts/header.d.ts +10 -0
  10. package/dist/cjs/types/consts/header.d.ts.map +1 -0
  11. package/dist/cjs/types/consts/lineweight.d.ts.map +1 -0
  12. package/dist/cjs/types/consts/measurement.d.ts.map +1 -0
  13. package/dist/cjs/types/consts/obscuredLineTypes.d.ts.map +1 -0
  14. package/dist/cjs/types/consts/plotStyleType.d.ts.map +1 -0
  15. package/dist/cjs/types/consts/viewport.d.ts +58 -0
  16. package/dist/cjs/types/consts/viewport.d.ts.map +1 -0
  17. package/dist/cjs/types/debug.d.ts.map +1 -0
  18. package/dist/cjs/types/index.d.ts +174 -0
  19. package/dist/cjs/types/index.d.ts.map +1 -0
  20. package/dist/cjs/types/parser/AutoCadColorIndex.d.ts.map +1 -0
  21. package/dist/cjs/types/parser/DxfArrayScanner.d.ts.map +1 -0
  22. package/dist/cjs/types/parser/DxfParser.d.ts +29 -0
  23. package/dist/cjs/types/parser/DxfParser.d.ts.map +1 -0
  24. package/dist/cjs/types/parser/ParseHelpers.d.ts +8 -0
  25. package/dist/cjs/types/parser/ParseHelpers.d.ts.map +1 -0
  26. package/dist/cjs/types/parser/blocks/parser.d.ts +4 -0
  27. package/dist/cjs/types/parser/blocks/parser.d.ts.map +1 -0
  28. package/dist/cjs/types/parser/blocks/types.d.ts +15 -0
  29. package/dist/cjs/types/parser/blocks/types.d.ts.map +1 -0
  30. package/dist/cjs/types/parser/classes/consts.d.ts +18 -0
  31. package/dist/cjs/types/parser/classes/consts.d.ts.map +1 -0
  32. package/dist/cjs/types/parser/classes/parser.d.ts +6 -0
  33. package/dist/cjs/types/parser/classes/parser.d.ts.map +1 -0
  34. package/dist/cjs/types/parser/classes/types.d.ts +60 -0
  35. package/dist/cjs/types/parser/classes/types.d.ts.map +1 -0
  36. package/dist/cjs/types/parser/entities/arc/parser.d.ts +7 -0
  37. package/dist/cjs/types/parser/entities/arc/parser.d.ts.map +1 -0
  38. package/dist/cjs/types/parser/entities/arc/types.d.ts +13 -0
  39. package/dist/cjs/types/parser/entities/arc/types.d.ts.map +1 -0
  40. package/dist/cjs/types/parser/entities/arc_dimension/consts.d.ts.map +1 -0
  41. package/dist/cjs/types/parser/entities/arc_dimension/parser.d.ts +9 -0
  42. package/dist/cjs/types/parser/entities/arc_dimension/parser.d.ts.map +1 -0
  43. package/dist/cjs/types/parser/entities/arc_dimension/types.d.ts +99 -0
  44. package/dist/cjs/types/parser/entities/arc_dimension/types.d.ts.map +1 -0
  45. package/dist/cjs/types/parser/entities/attdef/consts.d.ts.map +1 -0
  46. package/dist/cjs/types/parser/entities/attdef/parser.d.ts +8 -0
  47. package/dist/cjs/types/parser/entities/attdef/parser.d.ts.map +1 -0
  48. package/dist/cjs/types/parser/entities/attdef/types.d.ts +18 -0
  49. package/dist/cjs/types/parser/entities/attdef/types.d.ts.map +1 -0
  50. package/dist/cjs/types/parser/entities/attribute/parser.d.ts +8 -0
  51. package/dist/cjs/types/parser/entities/attribute/parser.d.ts.map +1 -0
  52. package/dist/cjs/types/parser/entities/attribute/types.d.ts +31 -0
  53. package/dist/cjs/types/parser/entities/attribute/types.d.ts.map +1 -0
  54. package/dist/cjs/types/parser/entities/body/parser.d.ts +8 -0
  55. package/dist/cjs/types/parser/entities/body/parser.d.ts.map +1 -0
  56. package/dist/cjs/types/parser/entities/body/types.d.ts +10 -0
  57. package/dist/cjs/types/parser/entities/body/types.d.ts.map +1 -0
  58. package/dist/cjs/types/parser/entities/circle/parser.d.ts +8 -0
  59. package/dist/cjs/types/parser/entities/circle/parser.d.ts.map +1 -0
  60. package/dist/cjs/types/parser/entities/circle/types.d.ts +11 -0
  61. package/dist/cjs/types/parser/entities/circle/types.d.ts.map +1 -0
  62. package/dist/cjs/types/parser/entities/consts.d.ts +5 -0
  63. package/dist/cjs/types/parser/entities/consts.d.ts.map +1 -0
  64. package/dist/cjs/types/parser/entities/dimension/parser.d.ts +14 -0
  65. package/dist/cjs/types/parser/entities/dimension/parser.d.ts.map +1 -0
  66. package/dist/cjs/types/parser/entities/dimension/types.d.ts +202 -0
  67. package/dist/cjs/types/parser/entities/dimension/types.d.ts.map +1 -0
  68. package/dist/cjs/types/parser/entities/ellipse/parser.d.ts +8 -0
  69. package/dist/cjs/types/parser/entities/ellipse/parser.d.ts.map +1 -0
  70. package/dist/cjs/types/parser/entities/ellipse/types.d.ts +13 -0
  71. package/dist/cjs/types/parser/entities/ellipse/types.d.ts.map +1 -0
  72. package/dist/cjs/types/parser/entities/face/consts.d.ts.map +1 -0
  73. package/dist/cjs/types/parser/entities/face/parser.d.ts +8 -0
  74. package/dist/cjs/types/parser/entities/face/parser.d.ts.map +1 -0
  75. package/dist/cjs/types/parser/entities/face/types.d.ts +8 -0
  76. package/dist/cjs/types/parser/entities/face/types.d.ts.map +1 -0
  77. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/edge.d.ts +7 -0
  78. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +1 -0
  79. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/parser.d.ts +5 -0
  80. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/parser.d.ts.map +1 -0
  81. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +3 -0
  82. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +1 -0
  83. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/shared.d.ts +3 -0
  84. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +1 -0
  85. package/dist/cjs/types/parser/entities/hatch/parser.d.ts +8 -0
  86. package/dist/cjs/types/parser/entities/hatch/parser.d.ts.map +1 -0
  87. package/dist/cjs/types/parser/entities/hatch/patternData.d.ts +3 -0
  88. package/dist/cjs/types/parser/entities/hatch/patternData.d.ts.map +1 -0
  89. package/dist/cjs/types/parser/entities/hatch/types/boundaryPath.d.ts +60 -0
  90. package/dist/cjs/types/parser/entities/hatch/types/boundaryPath.d.ts.map +1 -0
  91. package/dist/cjs/types/parser/entities/hatch/types/definitionLine.d.ts +9 -0
  92. package/dist/cjs/types/parser/entities/hatch/types/definitionLine.d.ts.map +1 -0
  93. package/dist/cjs/types/parser/entities/hatch/types/hatch.d.ts +39 -0
  94. package/dist/cjs/types/parser/entities/hatch/types/hatch.d.ts.map +1 -0
  95. package/dist/cjs/types/parser/entities/image/consts.d.ts.map +1 -0
  96. package/dist/cjs/types/parser/entities/image/parser.d.ts +8 -0
  97. package/dist/cjs/types/parser/entities/image/parser.d.ts.map +1 -0
  98. package/dist/cjs/types/parser/entities/image/types.d.ts +55 -0
  99. package/dist/cjs/types/parser/entities/image/types.d.ts.map +1 -0
  100. package/dist/cjs/types/parser/entities/insert/parser.d.ts +8 -0
  101. package/dist/cjs/types/parser/entities/insert/parser.d.ts.map +1 -0
  102. package/dist/cjs/types/parser/entities/insert/types.d.ts +19 -0
  103. package/dist/cjs/types/parser/entities/insert/types.d.ts.map +1 -0
  104. package/dist/cjs/types/parser/entities/leader/consts.d.ts.map +1 -0
  105. package/dist/cjs/types/parser/entities/leader/parser.d.ts +8 -0
  106. package/dist/cjs/types/parser/entities/leader/parser.d.ts.map +1 -0
  107. package/dist/cjs/types/parser/entities/leader/types.d.ts +24 -0
  108. package/dist/cjs/types/parser/entities/leader/types.d.ts.map +1 -0
  109. package/dist/cjs/types/parser/entities/light/consts.d.ts +11 -0
  110. package/dist/cjs/types/parser/entities/light/consts.d.ts.map +1 -0
  111. package/dist/cjs/types/parser/entities/light/parser.d.ts +10 -0
  112. package/dist/cjs/types/parser/entities/light/parser.d.ts.map +1 -0
  113. package/dist/cjs/types/parser/entities/light/types.d.ts +69 -0
  114. package/dist/cjs/types/parser/entities/light/types.d.ts.map +1 -0
  115. package/dist/cjs/types/parser/entities/line/parser.d.ts +8 -0
  116. package/dist/cjs/types/parser/entities/line/parser.d.ts.map +1 -0
  117. package/dist/cjs/types/parser/entities/line/types.d.ts +11 -0
  118. package/dist/cjs/types/parser/entities/line/types.d.ts.map +1 -0
  119. package/dist/cjs/types/parser/entities/lwpolyline/consts.d.ts.map +1 -0
  120. package/dist/cjs/types/parser/entities/lwpolyline/parser.d.ts +7 -0
  121. package/dist/cjs/types/parser/entities/lwpolyline/parser.d.ts.map +1 -0
  122. package/dist/cjs/types/parser/entities/lwpolyline/types.d.ts +20 -0
  123. package/dist/cjs/types/parser/entities/lwpolyline/types.d.ts.map +1 -0
  124. package/dist/cjs/types/parser/entities/mesh/parser.d.ts +8 -0
  125. package/dist/cjs/types/parser/entities/mesh/parser.d.ts.map +1 -0
  126. package/dist/cjs/types/parser/entities/mesh/types.d.ts +23 -0
  127. package/dist/cjs/types/parser/entities/mesh/types.d.ts.map +1 -0
  128. package/dist/cjs/types/parser/entities/mline/consts.d.ts.map +1 -0
  129. package/dist/cjs/types/parser/entities/mline/parser.d.ts +12 -0
  130. package/dist/cjs/types/parser/entities/mline/parser.d.ts.map +1 -0
  131. package/dist/cjs/types/parser/entities/mline/types.d.ts +151 -0
  132. package/dist/cjs/types/parser/entities/mline/types.d.ts.map +1 -0
  133. package/dist/cjs/types/parser/entities/mtext/consts.d.ts.map +1 -0
  134. package/dist/cjs/types/parser/entities/mtext/parser.d.ts +10 -0
  135. package/dist/cjs/types/parser/entities/mtext/parser.d.ts.map +1 -0
  136. package/dist/cjs/types/parser/entities/mtext/types.d.ts +34 -0
  137. package/dist/cjs/types/parser/entities/mtext/types.d.ts.map +1 -0
  138. package/dist/cjs/types/parser/entities/multileader/parser.d.ts +8 -0
  139. package/dist/cjs/types/parser/entities/multileader/parser.d.ts.map +1 -0
  140. package/dist/cjs/types/parser/entities/multileader/types.d.ts +35 -0
  141. package/dist/cjs/types/parser/entities/multileader/types.d.ts.map +1 -0
  142. package/dist/cjs/types/parser/entities/parser.d.ts +8 -0
  143. package/dist/cjs/types/parser/entities/parser.d.ts.map +1 -0
  144. package/dist/cjs/types/parser/entities/point/parser.d.ts +7 -0
  145. package/dist/cjs/types/parser/entities/point/parser.d.ts.map +1 -0
  146. package/dist/cjs/types/parser/entities/point/types.d.ts +10 -0
  147. package/dist/cjs/types/parser/entities/point/types.d.ts.map +1 -0
  148. package/dist/cjs/types/parser/entities/polyline/consts.d.ts.map +1 -0
  149. package/dist/cjs/types/parser/entities/polyline/parser.d.ts +7 -0
  150. package/dist/cjs/types/parser/entities/polyline/parser.d.ts.map +1 -0
  151. package/dist/cjs/types/parser/entities/polyline/types.d.ts +20 -0
  152. package/dist/cjs/types/parser/entities/polyline/types.d.ts.map +1 -0
  153. package/dist/cjs/types/parser/entities/ray/parser.d.ts +8 -0
  154. package/dist/cjs/types/parser/entities/ray/parser.d.ts.map +1 -0
  155. package/dist/cjs/types/parser/entities/ray/types.d.ts +11 -0
  156. package/dist/cjs/types/parser/entities/ray/types.d.ts.map +1 -0
  157. package/dist/cjs/types/parser/entities/region/parser.d.ts +8 -0
  158. package/dist/cjs/types/parser/entities/region/parser.d.ts.map +1 -0
  159. package/dist/cjs/types/parser/entities/region/types.d.ts +10 -0
  160. package/dist/cjs/types/parser/entities/region/types.d.ts.map +1 -0
  161. package/dist/cjs/types/parser/entities/section/parser.d.ts +7 -0
  162. package/dist/cjs/types/parser/entities/section/parser.d.ts.map +1 -0
  163. package/dist/cjs/types/parser/entities/section/types.d.ts +20 -0
  164. package/dist/cjs/types/parser/entities/section/types.d.ts.map +1 -0
  165. package/dist/cjs/types/parser/entities/shared.d.ts +82 -0
  166. package/dist/cjs/types/parser/entities/shared.d.ts.map +1 -0
  167. package/dist/cjs/types/parser/entities/solid/parser.d.ts +8 -0
  168. package/dist/cjs/types/parser/entities/solid/parser.d.ts.map +1 -0
  169. package/dist/cjs/types/parser/entities/solid/types.d.ts +10 -0
  170. package/dist/cjs/types/parser/entities/solid/types.d.ts.map +1 -0
  171. package/dist/cjs/types/parser/entities/solid3d/parser.d.ts +8 -0
  172. package/dist/cjs/types/parser/entities/solid3d/parser.d.ts.map +1 -0
  173. package/dist/cjs/types/parser/entities/solid3d/types.d.ts +12 -0
  174. package/dist/cjs/types/parser/entities/solid3d/types.d.ts.map +1 -0
  175. package/dist/cjs/types/parser/entities/spline/consts.d.ts.map +1 -0
  176. package/dist/cjs/types/parser/entities/spline/parser.d.ts +8 -0
  177. package/dist/cjs/types/parser/entities/spline/parser.d.ts.map +1 -0
  178. package/dist/cjs/types/parser/entities/spline/types.d.ts +22 -0
  179. package/dist/cjs/types/parser/entities/spline/types.d.ts.map +1 -0
  180. package/dist/cjs/types/parser/entities/sun/parser.d.ts +10 -0
  181. package/dist/cjs/types/parser/entities/sun/parser.d.ts.map +1 -0
  182. package/dist/cjs/types/parser/entities/sun/types.d.ts +80 -0
  183. package/dist/cjs/types/parser/entities/sun/types.d.ts.map +1 -0
  184. package/dist/cjs/types/parser/entities/text/consts.d.ts.map +1 -0
  185. package/dist/cjs/types/parser/entities/text/parser.d.ts +26 -0
  186. package/dist/cjs/types/parser/entities/text/parser.d.ts.map +1 -0
  187. package/dist/cjs/types/parser/entities/text/types.d.ts +21 -0
  188. package/dist/cjs/types/parser/entities/text/types.d.ts.map +1 -0
  189. package/dist/cjs/types/parser/entities/tolerance/parser.d.ts +8 -0
  190. package/dist/cjs/types/parser/entities/tolerance/parser.d.ts.map +1 -0
  191. package/dist/cjs/types/parser/entities/tolerance/types.d.ts +17 -0
  192. package/dist/cjs/types/parser/entities/tolerance/types.d.ts.map +1 -0
  193. package/dist/cjs/types/parser/entities/vertex/consts.d.ts.map +1 -0
  194. package/dist/cjs/types/parser/entities/vertex/parser.d.ts +8 -0
  195. package/dist/cjs/types/parser/entities/vertex/parser.d.ts.map +1 -0
  196. package/dist/cjs/types/parser/entities/vertex/types.d.ts +17 -0
  197. package/dist/cjs/types/parser/entities/vertex/types.d.ts.map +1 -0
  198. package/dist/cjs/types/parser/entities/viewport/parser.d.ts +7 -0
  199. package/dist/cjs/types/parser/entities/viewport/parser.d.ts.map +1 -0
  200. package/dist/cjs/types/parser/entities/viewport/types.d.ts +187 -0
  201. package/dist/cjs/types/parser/entities/viewport/types.d.ts.map +1 -0
  202. package/dist/cjs/types/parser/entities/wipeout/consts.d.ts.map +1 -0
  203. package/dist/cjs/types/parser/entities/wipeout/parser.d.ts +8 -0
  204. package/dist/cjs/types/parser/entities/wipeout/parser.d.ts.map +1 -0
  205. package/dist/cjs/types/parser/entities/wipeout/types.d.ts +38 -0
  206. package/dist/cjs/types/parser/entities/wipeout/types.d.ts.map +1 -0
  207. package/dist/cjs/types/parser/entities/xline/parser.d.ts +8 -0
  208. package/dist/cjs/types/parser/entities/xline/parser.d.ts.map +1 -0
  209. package/dist/cjs/types/parser/entities/xline/types.d.ts +9 -0
  210. package/dist/cjs/types/parser/entities/xline/types.d.ts.map +1 -0
  211. package/dist/cjs/types/parser/getAcadColor.d.ts +8 -0
  212. package/dist/cjs/types/parser/getAcadColor.d.ts.map +1 -0
  213. package/dist/cjs/types/parser/header/parser.d.ts +3 -0
  214. package/dist/cjs/types/parser/header/parser.d.ts.map +1 -0
  215. package/dist/cjs/types/parser/objects/consts.d.ts.map +1 -0
  216. package/dist/cjs/types/parser/objects/dictionary/parser.d.ts +3 -0
  217. package/dist/cjs/types/parser/objects/dictionary/parser.d.ts.map +1 -0
  218. package/dist/cjs/types/parser/objects/dictionary/types.d.ts +13 -0
  219. package/dist/cjs/types/parser/objects/dictionary/types.d.ts.map +1 -0
  220. package/dist/cjs/types/parser/objects/layout/consts.d.ts.map +1 -0
  221. package/dist/cjs/types/parser/objects/layout/parser.d.ts +3 -0
  222. package/dist/cjs/types/parser/objects/layout/parser.d.ts.map +1 -0
  223. package/dist/cjs/types/parser/objects/layout/types.d.ts +25 -0
  224. package/dist/cjs/types/parser/objects/layout/types.d.ts.map +1 -0
  225. package/dist/cjs/types/parser/objects/parser.d.ts +5 -0
  226. package/dist/cjs/types/parser/objects/parser.d.ts.map +1 -0
  227. package/dist/cjs/types/parser/objects/plotSettings/consts.d.ts.map +1 -0
  228. package/dist/cjs/types/parser/objects/plotSettings/parser.d.ts +3 -0
  229. package/dist/cjs/types/parser/objects/plotSettings/parser.d.ts.map +1 -0
  230. package/dist/cjs/types/parser/objects/plotSettings/types.d.ts +37 -0
  231. package/dist/cjs/types/parser/objects/plotSettings/types.d.ts.map +1 -0
  232. package/dist/cjs/types/parser/objects/shared.d.ts +3 -0
  233. package/dist/cjs/types/parser/objects/shared.d.ts.map +1 -0
  234. package/dist/cjs/types/parser/objects/spatial_filter/parser.d.ts +3 -0
  235. package/dist/cjs/types/parser/objects/spatial_filter/parser.d.ts.map +1 -0
  236. package/dist/cjs/types/parser/objects/spatial_filter/types.d.ts +39 -0
  237. package/dist/cjs/types/parser/objects/spatial_filter/types.d.ts.map +1 -0
  238. package/dist/cjs/types/parser/objects/types.d.ts +29 -0
  239. package/dist/cjs/types/parser/objects/types.d.ts.map +1 -0
  240. package/dist/cjs/types/parser/objects/xrecord/parser.d.ts +3 -0
  241. package/dist/cjs/types/parser/objects/xrecord/parser.d.ts.map +1 -0
  242. package/dist/cjs/types/parser/objects/xrecord/types.d.ts +16 -0
  243. package/dist/cjs/types/parser/objects/xrecord/types.d.ts.map +1 -0
  244. package/dist/cjs/types/parser/shared/ensureHandle.d.ts +2 -0
  245. package/dist/cjs/types/parser/shared/ensureHandle.d.ts.map +1 -0
  246. package/dist/cjs/types/parser/shared/extensions/parser.d.ts +4 -0
  247. package/dist/cjs/types/parser/shared/extensions/parser.d.ts.map +1 -0
  248. package/dist/cjs/types/parser/shared/isMatched.d.ts +7 -0
  249. package/dist/cjs/types/parser/shared/isMatched.d.ts.map +1 -0
  250. package/dist/cjs/types/parser/shared/parsePoint.d.ts +8 -0
  251. package/dist/cjs/types/parser/shared/parsePoint.d.ts.map +1 -0
  252. package/dist/cjs/types/parser/shared/parserGenerator.d.ts +50 -0
  253. package/dist/cjs/types/parser/shared/parserGenerator.d.ts.map +1 -0
  254. package/dist/cjs/types/parser/shared/xdata/parser.d.ts +6 -0
  255. package/dist/cjs/types/parser/shared/xdata/parser.d.ts.map +1 -0
  256. package/dist/cjs/types/parser/shared/xdata/types.d.ts +16 -0
  257. package/dist/cjs/types/parser/shared/xdata/types.d.ts.map +1 -0
  258. package/dist/cjs/types/parser/tables/appId/parser.d.ts +4 -0
  259. package/dist/cjs/types/parser/tables/appId/parser.d.ts.map +1 -0
  260. package/dist/cjs/types/parser/tables/appId/types.d.ts +20 -0
  261. package/dist/cjs/types/parser/tables/appId/types.d.ts.map +1 -0
  262. package/dist/cjs/types/parser/tables/blockRecord/parser.d.ts +2 -0
  263. package/dist/cjs/types/parser/tables/blockRecord/parser.d.ts.map +1 -0
  264. package/dist/cjs/types/parser/tables/blockRecord/types.d.ts +11 -0
  265. package/dist/cjs/types/parser/tables/blockRecord/types.d.ts.map +1 -0
  266. package/dist/cjs/types/parser/tables/consts.d.ts +38 -0
  267. package/dist/cjs/types/parser/tables/consts.d.ts.map +1 -0
  268. package/dist/cjs/types/parser/tables/dimStyle/consts.d.ts +3 -0
  269. package/dist/cjs/types/parser/tables/dimStyle/consts.d.ts.map +1 -0
  270. package/dist/cjs/types/parser/tables/dimStyle/parser.d.ts +2 -0
  271. package/dist/cjs/types/parser/tables/dimStyle/parser.d.ts.map +1 -0
  272. package/dist/cjs/types/parser/tables/dimStyle/types.d.ts +912 -0
  273. package/dist/cjs/types/parser/tables/dimStyle/types.d.ts.map +1 -0
  274. package/dist/cjs/types/parser/tables/layer/parser.d.ts +2 -0
  275. package/dist/cjs/types/parser/tables/layer/parser.d.ts.map +1 -0
  276. package/dist/cjs/types/parser/tables/layer/types.d.ts +14 -0
  277. package/dist/cjs/types/parser/tables/layer/types.d.ts.map +1 -0
  278. package/dist/cjs/types/parser/tables/ltype/consts.d.ts.map +1 -0
  279. package/dist/cjs/types/parser/tables/ltype/parser.d.ts +2 -0
  280. package/dist/cjs/types/parser/tables/ltype/parser.d.ts.map +1 -0
  281. package/dist/cjs/types/parser/tables/ltype/types.d.ts +22 -0
  282. package/dist/cjs/types/parser/tables/ltype/types.d.ts.map +1 -0
  283. package/dist/cjs/types/parser/tables/parser.d.ts +3 -0
  284. package/dist/cjs/types/parser/tables/parser.d.ts.map +1 -0
  285. package/dist/cjs/types/parser/tables/shared.d.ts +3 -0
  286. package/dist/cjs/types/parser/tables/shared.d.ts.map +1 -0
  287. package/dist/cjs/types/parser/tables/style/parser.d.ts +2 -0
  288. package/dist/cjs/types/parser/tables/style/parser.d.ts.map +1 -0
  289. package/dist/cjs/types/parser/tables/style/types.d.ts +15 -0
  290. package/dist/cjs/types/parser/tables/style/types.d.ts.map +1 -0
  291. package/dist/cjs/types/parser/tables/types.d.ts +14 -0
  292. package/dist/cjs/types/parser/tables/types.d.ts.map +1 -0
  293. package/dist/cjs/types/parser/tables/ucs/parser.d.ts +4 -0
  294. package/dist/cjs/types/parser/tables/ucs/parser.d.ts.map +1 -0
  295. package/dist/cjs/types/parser/tables/ucs/types.d.ts +127 -0
  296. package/dist/cjs/types/parser/tables/ucs/types.d.ts.map +1 -0
  297. package/dist/cjs/types/parser/tables/view/consts.d.ts +4 -0
  298. package/dist/cjs/types/parser/tables/view/consts.d.ts.map +1 -0
  299. package/dist/cjs/types/parser/tables/view/parser.d.ts +4 -0
  300. package/dist/cjs/types/parser/tables/view/parser.d.ts.map +1 -0
  301. package/dist/cjs/types/parser/tables/view/types.d.ts +140 -0
  302. package/dist/cjs/types/parser/tables/view/types.d.ts.map +1 -0
  303. package/dist/cjs/types/parser/tables/vport/parser.d.ts +2 -0
  304. package/dist/cjs/types/parser/tables/vport/parser.d.ts.map +1 -0
  305. package/dist/cjs/types/parser/tables/vport/types.d.ts +44 -0
  306. package/dist/cjs/types/parser/tables/vport/types.d.ts.map +1 -0
  307. package/dist/cjs/types/parser/thumbnailImage/parser.d.ts +6 -0
  308. package/dist/cjs/types/parser/thumbnailImage/parser.d.ts.map +1 -0
  309. package/dist/cjs/types/parser/types.d.ts +35 -0
  310. package/dist/cjs/types/parser/types.d.ts.map +1 -0
  311. package/dist/cjs/types/stream-parser/DxfStreamParser.d.ts +44 -0
  312. package/dist/cjs/types/stream-parser/DxfStreamParser.d.ts.map +1 -0
  313. package/dist/cjs/types/stream-parser/streamShared/parseData.d.ts +20 -0
  314. package/dist/cjs/types/stream-parser/streamShared/parseData.d.ts.map +1 -0
  315. package/dist/cjs/types/types/color.d.ts +4 -0
  316. package/dist/cjs/types/types/color.d.ts.map +1 -0
  317. package/dist/cjs/types/types/dxfHeader.d.ts +17 -0
  318. package/dist/cjs/types/types/dxfHeader.d.ts.map +1 -0
  319. package/dist/cjs/types/types/shared.d.ts +22 -0
  320. package/dist/cjs/types/types/shared.d.ts.map +1 -0
  321. package/dist/cjs/types/utlis.d.ts +18 -0
  322. package/dist/cjs/types/utlis.d.ts.map +1 -0
  323. package/dist/esm/bundle.mjs +3 -0
  324. package/dist/esm/types/consts/block.d.ts +11 -0
  325. package/dist/esm/types/consts/block.d.ts.map +1 -0
  326. package/dist/esm/types/consts/color.d.ts +6 -0
  327. package/dist/esm/types/consts/color.d.ts.map +1 -0
  328. package/dist/esm/types/consts/config.d.ts +3 -0
  329. package/dist/esm/types/consts/config.d.ts.map +1 -0
  330. package/dist/esm/types/consts/dimension.d.ts +166 -0
  331. package/dist/esm/types/consts/dimension.d.ts.map +1 -0
  332. package/dist/esm/types/consts/hatch.d.ts +45 -0
  333. package/dist/esm/types/consts/hatch.d.ts.map +1 -0
  334. package/dist/esm/types/consts/header.d.ts +10 -0
  335. package/dist/esm/types/consts/header.d.ts.map +1 -0
  336. package/dist/esm/types/consts/lineweight.d.ts +6 -0
  337. package/dist/esm/types/consts/lineweight.d.ts.map +1 -0
  338. package/dist/esm/types/consts/measurement.d.ts +5 -0
  339. package/dist/esm/types/consts/measurement.d.ts.map +1 -0
  340. package/dist/esm/types/consts/obscuredLineTypes.d.ts +22 -0
  341. package/dist/esm/types/consts/obscuredLineTypes.d.ts.map +1 -0
  342. package/dist/esm/types/consts/plotStyleType.d.ts +14 -0
  343. package/dist/esm/types/consts/plotStyleType.d.ts.map +1 -0
  344. package/dist/esm/types/consts/viewport.d.ts +58 -0
  345. package/dist/esm/types/consts/viewport.d.ts.map +1 -0
  346. package/dist/esm/types/debug.d.ts +4 -0
  347. package/dist/esm/types/debug.d.ts.map +1 -0
  348. package/dist/esm/types/index.d.ts +174 -0
  349. package/dist/esm/types/index.d.ts.map +1 -0
  350. package/dist/esm/types/parser/AutoCadColorIndex.d.ts +9 -0
  351. package/dist/esm/types/parser/AutoCadColorIndex.d.ts.map +1 -0
  352. package/dist/esm/types/parser/DxfArrayScanner.d.ts +49 -0
  353. package/dist/esm/types/parser/DxfArrayScanner.d.ts.map +1 -0
  354. package/dist/esm/types/parser/DxfParser.d.ts +29 -0
  355. package/dist/esm/types/parser/DxfParser.d.ts.map +1 -0
  356. package/dist/esm/types/parser/ParseHelpers.d.ts +8 -0
  357. package/dist/esm/types/parser/ParseHelpers.d.ts.map +1 -0
  358. package/dist/esm/types/parser/blocks/parser.d.ts +4 -0
  359. package/dist/esm/types/parser/blocks/parser.d.ts.map +1 -0
  360. package/dist/esm/types/parser/blocks/types.d.ts +15 -0
  361. package/dist/esm/types/parser/blocks/types.d.ts.map +1 -0
  362. package/dist/esm/types/parser/classes/consts.d.ts +18 -0
  363. package/dist/esm/types/parser/classes/consts.d.ts.map +1 -0
  364. package/dist/esm/types/parser/classes/parser.d.ts +6 -0
  365. package/dist/esm/types/parser/classes/parser.d.ts.map +1 -0
  366. package/dist/esm/types/parser/classes/types.d.ts +60 -0
  367. package/dist/esm/types/parser/classes/types.d.ts.map +1 -0
  368. package/dist/esm/types/parser/entities/arc/parser.d.ts +7 -0
  369. package/dist/esm/types/parser/entities/arc/parser.d.ts.map +1 -0
  370. package/dist/esm/types/parser/entities/arc/types.d.ts +13 -0
  371. package/dist/esm/types/parser/entities/arc/types.d.ts.map +1 -0
  372. package/dist/esm/types/parser/entities/arc_dimension/consts.d.ts +13 -0
  373. package/dist/esm/types/parser/entities/arc_dimension/consts.d.ts.map +1 -0
  374. package/dist/esm/types/parser/entities/arc_dimension/parser.d.ts +9 -0
  375. package/dist/esm/types/parser/entities/arc_dimension/parser.d.ts.map +1 -0
  376. package/dist/esm/types/parser/entities/arc_dimension/types.d.ts +99 -0
  377. package/dist/esm/types/parser/entities/arc_dimension/types.d.ts.map +1 -0
  378. package/dist/esm/types/parser/entities/attdef/consts.d.ts +12 -0
  379. package/dist/esm/types/parser/entities/attdef/consts.d.ts.map +1 -0
  380. package/dist/esm/types/parser/entities/attdef/parser.d.ts +8 -0
  381. package/dist/esm/types/parser/entities/attdef/parser.d.ts.map +1 -0
  382. package/dist/esm/types/parser/entities/attdef/types.d.ts +18 -0
  383. package/dist/esm/types/parser/entities/attdef/types.d.ts.map +1 -0
  384. package/dist/esm/types/parser/entities/attribute/parser.d.ts +8 -0
  385. package/dist/esm/types/parser/entities/attribute/parser.d.ts.map +1 -0
  386. package/dist/esm/types/parser/entities/attribute/types.d.ts +31 -0
  387. package/dist/esm/types/parser/entities/attribute/types.d.ts.map +1 -0
  388. package/dist/esm/types/parser/entities/body/parser.d.ts +8 -0
  389. package/dist/esm/types/parser/entities/body/parser.d.ts.map +1 -0
  390. package/dist/esm/types/parser/entities/body/types.d.ts +10 -0
  391. package/dist/esm/types/parser/entities/body/types.d.ts.map +1 -0
  392. package/dist/esm/types/parser/entities/circle/parser.d.ts +8 -0
  393. package/dist/esm/types/parser/entities/circle/parser.d.ts.map +1 -0
  394. package/dist/esm/types/parser/entities/circle/types.d.ts +11 -0
  395. package/dist/esm/types/parser/entities/circle/types.d.ts.map +1 -0
  396. package/dist/esm/types/parser/entities/consts.d.ts +5 -0
  397. package/dist/esm/types/parser/entities/consts.d.ts.map +1 -0
  398. package/dist/esm/types/parser/entities/dimension/parser.d.ts +14 -0
  399. package/dist/esm/types/parser/entities/dimension/parser.d.ts.map +1 -0
  400. package/dist/esm/types/parser/entities/dimension/types.d.ts +202 -0
  401. package/dist/esm/types/parser/entities/dimension/types.d.ts.map +1 -0
  402. package/dist/esm/types/parser/entities/ellipse/parser.d.ts +8 -0
  403. package/dist/esm/types/parser/entities/ellipse/parser.d.ts.map +1 -0
  404. package/dist/esm/types/parser/entities/ellipse/types.d.ts +13 -0
  405. package/dist/esm/types/parser/entities/ellipse/types.d.ts.map +1 -0
  406. package/dist/esm/types/parser/entities/face/consts.d.ts +7 -0
  407. package/dist/esm/types/parser/entities/face/consts.d.ts.map +1 -0
  408. package/dist/esm/types/parser/entities/face/parser.d.ts +8 -0
  409. package/dist/esm/types/parser/entities/face/parser.d.ts.map +1 -0
  410. package/dist/esm/types/parser/entities/face/types.d.ts +8 -0
  411. package/dist/esm/types/parser/entities/face/types.d.ts.map +1 -0
  412. package/dist/esm/types/parser/entities/hatch/boundaryPathData/edge.d.ts +7 -0
  413. package/dist/esm/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +1 -0
  414. package/dist/esm/types/parser/entities/hatch/boundaryPathData/parser.d.ts +5 -0
  415. package/dist/esm/types/parser/entities/hatch/boundaryPathData/parser.d.ts.map +1 -0
  416. package/dist/esm/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +3 -0
  417. package/dist/esm/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +1 -0
  418. package/dist/esm/types/parser/entities/hatch/boundaryPathData/shared.d.ts +3 -0
  419. package/dist/esm/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +1 -0
  420. package/dist/esm/types/parser/entities/hatch/parser.d.ts +8 -0
  421. package/dist/esm/types/parser/entities/hatch/parser.d.ts.map +1 -0
  422. package/dist/esm/types/parser/entities/hatch/patternData.d.ts +3 -0
  423. package/dist/esm/types/parser/entities/hatch/patternData.d.ts.map +1 -0
  424. package/dist/esm/types/parser/entities/hatch/types/boundaryPath.d.ts +60 -0
  425. package/dist/esm/types/parser/entities/hatch/types/boundaryPath.d.ts.map +1 -0
  426. package/dist/esm/types/parser/entities/hatch/types/definitionLine.d.ts +9 -0
  427. package/dist/esm/types/parser/entities/hatch/types/definitionLine.d.ts.map +1 -0
  428. package/dist/esm/types/parser/entities/hatch/types/hatch.d.ts +39 -0
  429. package/dist/esm/types/parser/entities/hatch/types/hatch.d.ts.map +1 -0
  430. package/dist/esm/types/parser/entities/image/consts.d.ts +15 -0
  431. package/dist/esm/types/parser/entities/image/consts.d.ts.map +1 -0
  432. package/dist/esm/types/parser/entities/image/parser.d.ts +8 -0
  433. package/dist/esm/types/parser/entities/image/parser.d.ts.map +1 -0
  434. package/dist/esm/types/parser/entities/image/types.d.ts +55 -0
  435. package/dist/esm/types/parser/entities/image/types.d.ts.map +1 -0
  436. package/dist/esm/types/parser/entities/insert/parser.d.ts +8 -0
  437. package/dist/esm/types/parser/entities/insert/parser.d.ts.map +1 -0
  438. package/dist/esm/types/parser/entities/insert/types.d.ts +19 -0
  439. package/dist/esm/types/parser/entities/insert/types.d.ts.map +1 -0
  440. package/dist/esm/types/parser/entities/leader/consts.d.ts +7 -0
  441. package/dist/esm/types/parser/entities/leader/consts.d.ts.map +1 -0
  442. package/dist/esm/types/parser/entities/leader/parser.d.ts +8 -0
  443. package/dist/esm/types/parser/entities/leader/parser.d.ts.map +1 -0
  444. package/dist/esm/types/parser/entities/leader/types.d.ts +24 -0
  445. package/dist/esm/types/parser/entities/leader/types.d.ts.map +1 -0
  446. package/dist/esm/types/parser/entities/light/consts.d.ts +11 -0
  447. package/dist/esm/types/parser/entities/light/consts.d.ts.map +1 -0
  448. package/dist/esm/types/parser/entities/light/parser.d.ts +10 -0
  449. package/dist/esm/types/parser/entities/light/parser.d.ts.map +1 -0
  450. package/dist/esm/types/parser/entities/light/types.d.ts +69 -0
  451. package/dist/esm/types/parser/entities/light/types.d.ts.map +1 -0
  452. package/dist/esm/types/parser/entities/line/parser.d.ts +8 -0
  453. package/dist/esm/types/parser/entities/line/parser.d.ts.map +1 -0
  454. package/dist/esm/types/parser/entities/line/types.d.ts +11 -0
  455. package/dist/esm/types/parser/entities/line/types.d.ts.map +1 -0
  456. package/dist/esm/types/parser/entities/lwpolyline/consts.d.ts +5 -0
  457. package/dist/esm/types/parser/entities/lwpolyline/consts.d.ts.map +1 -0
  458. package/dist/esm/types/parser/entities/lwpolyline/parser.d.ts +7 -0
  459. package/dist/esm/types/parser/entities/lwpolyline/parser.d.ts.map +1 -0
  460. package/dist/esm/types/parser/entities/lwpolyline/types.d.ts +20 -0
  461. package/dist/esm/types/parser/entities/lwpolyline/types.d.ts.map +1 -0
  462. package/dist/esm/types/parser/entities/mesh/parser.d.ts +8 -0
  463. package/dist/esm/types/parser/entities/mesh/parser.d.ts.map +1 -0
  464. package/dist/esm/types/parser/entities/mesh/types.d.ts +23 -0
  465. package/dist/esm/types/parser/entities/mesh/types.d.ts.map +1 -0
  466. package/dist/esm/types/parser/entities/mline/consts.d.ts +12 -0
  467. package/dist/esm/types/parser/entities/mline/consts.d.ts.map +1 -0
  468. package/dist/esm/types/parser/entities/mline/parser.d.ts +12 -0
  469. package/dist/esm/types/parser/entities/mline/parser.d.ts.map +1 -0
  470. package/dist/esm/types/parser/entities/mline/types.d.ts +151 -0
  471. package/dist/esm/types/parser/entities/mline/types.d.ts.map +1 -0
  472. package/dist/esm/types/parser/entities/mtext/consts.d.ts +6 -0
  473. package/dist/esm/types/parser/entities/mtext/consts.d.ts.map +1 -0
  474. package/dist/esm/types/parser/entities/mtext/parser.d.ts +10 -0
  475. package/dist/esm/types/parser/entities/mtext/parser.d.ts.map +1 -0
  476. package/dist/esm/types/parser/entities/mtext/types.d.ts +34 -0
  477. package/dist/esm/types/parser/entities/mtext/types.d.ts.map +1 -0
  478. package/dist/esm/types/parser/entities/multileader/parser.d.ts +8 -0
  479. package/dist/esm/types/parser/entities/multileader/parser.d.ts.map +1 -0
  480. package/dist/esm/types/parser/entities/multileader/types.d.ts +35 -0
  481. package/dist/esm/types/parser/entities/multileader/types.d.ts.map +1 -0
  482. package/dist/esm/types/parser/entities/parser.d.ts +8 -0
  483. package/dist/esm/types/parser/entities/parser.d.ts.map +1 -0
  484. package/dist/esm/types/parser/entities/point/parser.d.ts +7 -0
  485. package/dist/esm/types/parser/entities/point/parser.d.ts.map +1 -0
  486. package/dist/esm/types/parser/entities/point/types.d.ts +10 -0
  487. package/dist/esm/types/parser/entities/point/types.d.ts.map +1 -0
  488. package/dist/esm/types/parser/entities/polyline/consts.d.ts +17 -0
  489. package/dist/esm/types/parser/entities/polyline/consts.d.ts.map +1 -0
  490. package/dist/esm/types/parser/entities/polyline/parser.d.ts +7 -0
  491. package/dist/esm/types/parser/entities/polyline/parser.d.ts.map +1 -0
  492. package/dist/esm/types/parser/entities/polyline/types.d.ts +20 -0
  493. package/dist/esm/types/parser/entities/polyline/types.d.ts.map +1 -0
  494. package/dist/esm/types/parser/entities/ray/parser.d.ts +8 -0
  495. package/dist/esm/types/parser/entities/ray/parser.d.ts.map +1 -0
  496. package/dist/esm/types/parser/entities/ray/types.d.ts +11 -0
  497. package/dist/esm/types/parser/entities/ray/types.d.ts.map +1 -0
  498. package/dist/esm/types/parser/entities/region/parser.d.ts +8 -0
  499. package/dist/esm/types/parser/entities/region/parser.d.ts.map +1 -0
  500. package/dist/esm/types/parser/entities/region/types.d.ts +10 -0
  501. package/dist/esm/types/parser/entities/region/types.d.ts.map +1 -0
  502. package/dist/esm/types/parser/entities/section/parser.d.ts +7 -0
  503. package/dist/esm/types/parser/entities/section/parser.d.ts.map +1 -0
  504. package/dist/esm/types/parser/entities/section/types.d.ts +20 -0
  505. package/dist/esm/types/parser/entities/section/types.d.ts.map +1 -0
  506. package/dist/esm/types/parser/entities/shared.d.ts +82 -0
  507. package/dist/esm/types/parser/entities/shared.d.ts.map +1 -0
  508. package/dist/esm/types/parser/entities/solid/parser.d.ts +8 -0
  509. package/dist/esm/types/parser/entities/solid/parser.d.ts.map +1 -0
  510. package/dist/esm/types/parser/entities/solid/types.d.ts +10 -0
  511. package/dist/esm/types/parser/entities/solid/types.d.ts.map +1 -0
  512. package/dist/esm/types/parser/entities/solid3d/parser.d.ts +8 -0
  513. package/dist/esm/types/parser/entities/solid3d/parser.d.ts.map +1 -0
  514. package/dist/esm/types/parser/entities/solid3d/types.d.ts +12 -0
  515. package/dist/esm/types/parser/entities/solid3d/types.d.ts.map +1 -0
  516. package/dist/esm/types/parser/entities/spline/consts.d.ts +9 -0
  517. package/dist/esm/types/parser/entities/spline/consts.d.ts.map +1 -0
  518. package/dist/esm/types/parser/entities/spline/parser.d.ts +8 -0
  519. package/dist/esm/types/parser/entities/spline/parser.d.ts.map +1 -0
  520. package/dist/esm/types/parser/entities/spline/types.d.ts +22 -0
  521. package/dist/esm/types/parser/entities/spline/types.d.ts.map +1 -0
  522. package/dist/esm/types/parser/entities/sun/parser.d.ts +10 -0
  523. package/dist/esm/types/parser/entities/sun/parser.d.ts.map +1 -0
  524. package/dist/esm/types/parser/entities/sun/types.d.ts +80 -0
  525. package/dist/esm/types/parser/entities/sun/types.d.ts.map +1 -0
  526. package/dist/esm/types/parser/entities/text/consts.d.ts +20 -0
  527. package/dist/esm/types/parser/entities/text/consts.d.ts.map +1 -0
  528. package/dist/esm/types/parser/entities/text/parser.d.ts +26 -0
  529. package/dist/esm/types/parser/entities/text/parser.d.ts.map +1 -0
  530. package/dist/esm/types/parser/entities/text/types.d.ts +21 -0
  531. package/dist/esm/types/parser/entities/text/types.d.ts.map +1 -0
  532. package/dist/esm/types/parser/entities/tolerance/parser.d.ts +8 -0
  533. package/dist/esm/types/parser/entities/tolerance/parser.d.ts.map +1 -0
  534. package/dist/esm/types/parser/entities/tolerance/types.d.ts +17 -0
  535. package/dist/esm/types/parser/entities/tolerance/types.d.ts.map +1 -0
  536. package/dist/esm/types/parser/entities/vertex/consts.d.ts +11 -0
  537. package/dist/esm/types/parser/entities/vertex/consts.d.ts.map +1 -0
  538. package/dist/esm/types/parser/entities/vertex/parser.d.ts +8 -0
  539. package/dist/esm/types/parser/entities/vertex/parser.d.ts.map +1 -0
  540. package/dist/esm/types/parser/entities/vertex/types.d.ts +17 -0
  541. package/dist/esm/types/parser/entities/vertex/types.d.ts.map +1 -0
  542. package/dist/esm/types/parser/entities/viewport/parser.d.ts +7 -0
  543. package/dist/esm/types/parser/entities/viewport/parser.d.ts.map +1 -0
  544. package/dist/esm/types/parser/entities/viewport/types.d.ts +187 -0
  545. package/dist/esm/types/parser/entities/viewport/types.d.ts.map +1 -0
  546. package/dist/esm/types/parser/entities/wipeout/consts.d.ts +7 -0
  547. package/dist/esm/types/parser/entities/wipeout/consts.d.ts.map +1 -0
  548. package/dist/esm/types/parser/entities/wipeout/parser.d.ts +8 -0
  549. package/dist/esm/types/parser/entities/wipeout/parser.d.ts.map +1 -0
  550. package/dist/esm/types/parser/entities/wipeout/types.d.ts +38 -0
  551. package/dist/esm/types/parser/entities/wipeout/types.d.ts.map +1 -0
  552. package/dist/esm/types/parser/entities/xline/parser.d.ts +8 -0
  553. package/dist/esm/types/parser/entities/xline/parser.d.ts.map +1 -0
  554. package/dist/esm/types/parser/entities/xline/types.d.ts +9 -0
  555. package/dist/esm/types/parser/entities/xline/types.d.ts.map +1 -0
  556. package/dist/esm/types/parser/getAcadColor.d.ts +8 -0
  557. package/dist/esm/types/parser/getAcadColor.d.ts.map +1 -0
  558. package/dist/esm/types/parser/header/parser.d.ts +3 -0
  559. package/dist/esm/types/parser/header/parser.d.ts.map +1 -0
  560. package/dist/esm/types/parser/objects/consts.d.ts +15 -0
  561. package/dist/esm/types/parser/objects/consts.d.ts.map +1 -0
  562. package/dist/esm/types/parser/objects/dictionary/parser.d.ts +3 -0
  563. package/dist/esm/types/parser/objects/dictionary/parser.d.ts.map +1 -0
  564. package/dist/esm/types/parser/objects/dictionary/types.d.ts +13 -0
  565. package/dist/esm/types/parser/objects/dictionary/types.d.ts.map +1 -0
  566. package/dist/esm/types/parser/objects/layout/consts.d.ts +5 -0
  567. package/dist/esm/types/parser/objects/layout/consts.d.ts.map +1 -0
  568. package/dist/esm/types/parser/objects/layout/parser.d.ts +3 -0
  569. package/dist/esm/types/parser/objects/layout/parser.d.ts.map +1 -0
  570. package/dist/esm/types/parser/objects/layout/types.d.ts +25 -0
  571. package/dist/esm/types/parser/objects/layout/types.d.ts.map +1 -0
  572. package/dist/esm/types/parser/objects/parser.d.ts +5 -0
  573. package/dist/esm/types/parser/objects/parser.d.ts.map +1 -0
  574. package/dist/esm/types/parser/objects/plotSettings/consts.d.ts +28 -0
  575. package/dist/esm/types/parser/objects/plotSettings/consts.d.ts.map +1 -0
  576. package/dist/esm/types/parser/objects/plotSettings/parser.d.ts +3 -0
  577. package/dist/esm/types/parser/objects/plotSettings/parser.d.ts.map +1 -0
  578. package/dist/esm/types/parser/objects/plotSettings/types.d.ts +37 -0
  579. package/dist/esm/types/parser/objects/plotSettings/types.d.ts.map +1 -0
  580. package/dist/esm/types/parser/objects/shared.d.ts +3 -0
  581. package/dist/esm/types/parser/objects/shared.d.ts.map +1 -0
  582. package/dist/esm/types/parser/objects/spatial_filter/parser.d.ts +3 -0
  583. package/dist/esm/types/parser/objects/spatial_filter/parser.d.ts.map +1 -0
  584. package/dist/esm/types/parser/objects/spatial_filter/types.d.ts +39 -0
  585. package/dist/esm/types/parser/objects/spatial_filter/types.d.ts.map +1 -0
  586. package/dist/esm/types/parser/objects/types.d.ts +29 -0
  587. package/dist/esm/types/parser/objects/types.d.ts.map +1 -0
  588. package/dist/esm/types/parser/objects/xrecord/parser.d.ts +3 -0
  589. package/dist/esm/types/parser/objects/xrecord/parser.d.ts.map +1 -0
  590. package/dist/esm/types/parser/objects/xrecord/types.d.ts +16 -0
  591. package/dist/esm/types/parser/objects/xrecord/types.d.ts.map +1 -0
  592. package/dist/esm/types/parser/shared/ensureHandle.d.ts +2 -0
  593. package/dist/esm/types/parser/shared/ensureHandle.d.ts.map +1 -0
  594. package/dist/esm/types/parser/shared/extensions/parser.d.ts +4 -0
  595. package/dist/esm/types/parser/shared/extensions/parser.d.ts.map +1 -0
  596. package/dist/esm/types/parser/shared/isMatched.d.ts +7 -0
  597. package/dist/esm/types/parser/shared/isMatched.d.ts.map +1 -0
  598. package/dist/esm/types/parser/shared/parsePoint.d.ts +8 -0
  599. package/dist/esm/types/parser/shared/parsePoint.d.ts.map +1 -0
  600. package/dist/esm/types/parser/shared/parserGenerator.d.ts +50 -0
  601. package/dist/esm/types/parser/shared/parserGenerator.d.ts.map +1 -0
  602. package/dist/esm/types/parser/shared/xdata/parser.d.ts +6 -0
  603. package/dist/esm/types/parser/shared/xdata/parser.d.ts.map +1 -0
  604. package/dist/esm/types/parser/shared/xdata/types.d.ts +16 -0
  605. package/dist/esm/types/parser/shared/xdata/types.d.ts.map +1 -0
  606. package/dist/esm/types/parser/tables/appId/parser.d.ts +4 -0
  607. package/dist/esm/types/parser/tables/appId/parser.d.ts.map +1 -0
  608. package/dist/esm/types/parser/tables/appId/types.d.ts +20 -0
  609. package/dist/esm/types/parser/tables/appId/types.d.ts.map +1 -0
  610. package/dist/esm/types/parser/tables/blockRecord/parser.d.ts +2 -0
  611. package/dist/esm/types/parser/tables/blockRecord/parser.d.ts.map +1 -0
  612. package/dist/esm/types/parser/tables/blockRecord/types.d.ts +11 -0
  613. package/dist/esm/types/parser/tables/blockRecord/types.d.ts.map +1 -0
  614. package/dist/esm/types/parser/tables/consts.d.ts +38 -0
  615. package/dist/esm/types/parser/tables/consts.d.ts.map +1 -0
  616. package/dist/esm/types/parser/tables/dimStyle/consts.d.ts +3 -0
  617. package/dist/esm/types/parser/tables/dimStyle/consts.d.ts.map +1 -0
  618. package/dist/esm/types/parser/tables/dimStyle/parser.d.ts +2 -0
  619. package/dist/esm/types/parser/tables/dimStyle/parser.d.ts.map +1 -0
  620. package/dist/esm/types/parser/tables/dimStyle/types.d.ts +912 -0
  621. package/dist/esm/types/parser/tables/dimStyle/types.d.ts.map +1 -0
  622. package/dist/esm/types/parser/tables/layer/parser.d.ts +2 -0
  623. package/dist/esm/types/parser/tables/layer/parser.d.ts.map +1 -0
  624. package/dist/esm/types/parser/tables/layer/types.d.ts +14 -0
  625. package/dist/esm/types/parser/tables/layer/types.d.ts.map +1 -0
  626. package/dist/esm/types/parser/tables/ltype/consts.d.ts +7 -0
  627. package/dist/esm/types/parser/tables/ltype/consts.d.ts.map +1 -0
  628. package/dist/esm/types/parser/tables/ltype/parser.d.ts +2 -0
  629. package/dist/esm/types/parser/tables/ltype/parser.d.ts.map +1 -0
  630. package/dist/esm/types/parser/tables/ltype/types.d.ts +22 -0
  631. package/dist/esm/types/parser/tables/ltype/types.d.ts.map +1 -0
  632. package/dist/esm/types/parser/tables/parser.d.ts +3 -0
  633. package/dist/esm/types/parser/tables/parser.d.ts.map +1 -0
  634. package/dist/esm/types/parser/tables/shared.d.ts +3 -0
  635. package/dist/esm/types/parser/tables/shared.d.ts.map +1 -0
  636. package/dist/esm/types/parser/tables/style/parser.d.ts +2 -0
  637. package/dist/esm/types/parser/tables/style/parser.d.ts.map +1 -0
  638. package/dist/esm/types/parser/tables/style/types.d.ts +15 -0
  639. package/dist/esm/types/parser/tables/style/types.d.ts.map +1 -0
  640. package/dist/esm/types/parser/tables/types.d.ts +14 -0
  641. package/dist/esm/types/parser/tables/types.d.ts.map +1 -0
  642. package/dist/esm/types/parser/tables/ucs/parser.d.ts +4 -0
  643. package/dist/esm/types/parser/tables/ucs/parser.d.ts.map +1 -0
  644. package/dist/esm/types/parser/tables/ucs/types.d.ts +127 -0
  645. package/dist/esm/types/parser/tables/ucs/types.d.ts.map +1 -0
  646. package/dist/esm/types/parser/tables/view/consts.d.ts +4 -0
  647. package/dist/esm/types/parser/tables/view/consts.d.ts.map +1 -0
  648. package/dist/esm/types/parser/tables/view/parser.d.ts +4 -0
  649. package/dist/esm/types/parser/tables/view/parser.d.ts.map +1 -0
  650. package/dist/esm/types/parser/tables/view/types.d.ts +140 -0
  651. package/dist/esm/types/parser/tables/view/types.d.ts.map +1 -0
  652. package/dist/esm/types/parser/tables/vport/parser.d.ts +2 -0
  653. package/dist/esm/types/parser/tables/vport/parser.d.ts.map +1 -0
  654. package/dist/esm/types/parser/tables/vport/types.d.ts +44 -0
  655. package/dist/esm/types/parser/tables/vport/types.d.ts.map +1 -0
  656. package/dist/esm/types/parser/thumbnailImage/parser.d.ts +6 -0
  657. package/dist/esm/types/parser/thumbnailImage/parser.d.ts.map +1 -0
  658. package/dist/esm/types/parser/types.d.ts +35 -0
  659. package/dist/esm/types/parser/types.d.ts.map +1 -0
  660. package/dist/esm/types/stream-parser/DxfStreamParser.d.ts +44 -0
  661. package/dist/esm/types/stream-parser/DxfStreamParser.d.ts.map +1 -0
  662. package/dist/esm/types/stream-parser/streamShared/parseData.d.ts +20 -0
  663. package/dist/esm/types/stream-parser/streamShared/parseData.d.ts.map +1 -0
  664. package/dist/esm/types/types/color.d.ts +4 -0
  665. package/dist/esm/types/types/color.d.ts.map +1 -0
  666. package/dist/esm/types/types/dxfHeader.d.ts +17 -0
  667. package/dist/esm/types/types/dxfHeader.d.ts.map +1 -0
  668. package/dist/esm/types/types/shared.d.ts +22 -0
  669. package/dist/esm/types/types/shared.d.ts.map +1 -0
  670. package/dist/esm/types/utlis.d.ts +18 -0
  671. package/dist/esm/types/utlis.d.ts.map +1 -0
  672. package/package.json +15 -14
  673. package/dist/bundle.cjs +0 -3
  674. package/dist/bundle.mjs +0 -3
  675. package/dist/types/consts/block.d.ts.map +0 -1
  676. package/dist/types/consts/color.d.ts.map +0 -1
  677. package/dist/types/consts/config.d.ts.map +0 -1
  678. package/dist/types/consts/dimension.d.ts +0 -77
  679. package/dist/types/consts/dimension.d.ts.map +0 -1
  680. package/dist/types/consts/hatch.d.ts.map +0 -1
  681. package/dist/types/consts/header.d.ts +0 -10
  682. package/dist/types/consts/header.d.ts.map +0 -1
  683. package/dist/types/consts/index.d.ts +0 -13
  684. package/dist/types/consts/index.d.ts.map +0 -1
  685. package/dist/types/consts/lineweight.d.ts.map +0 -1
  686. package/dist/types/consts/measurement.d.ts.map +0 -1
  687. package/dist/types/consts/obscuredLineTypes.d.ts.map +0 -1
  688. package/dist/types/consts/plotStyleType.d.ts.map +0 -1
  689. package/dist/types/consts/scene.d.ts +0 -3
  690. package/dist/types/consts/scene.d.ts.map +0 -1
  691. package/dist/types/consts/viewport.d.ts +0 -53
  692. package/dist/types/consts/viewport.d.ts.map +0 -1
  693. package/dist/types/index.d.ts +0 -8
  694. package/dist/types/index.d.ts.map +0 -1
  695. package/dist/types/parser/AutoCadColorIndex.d.ts.map +0 -1
  696. package/dist/types/parser/DxfArrayScanner.d.ts.map +0 -1
  697. package/dist/types/parser/DxfParser.d.ts +0 -22
  698. package/dist/types/parser/DxfParser.d.ts.map +0 -1
  699. package/dist/types/parser/ParseHelpers.d.ts +0 -16
  700. package/dist/types/parser/ParseHelpers.d.ts.map +0 -1
  701. package/dist/types/parser/blocks/index.d.ts +0 -5
  702. package/dist/types/parser/blocks/index.d.ts.map +0 -1
  703. package/dist/types/parser/blocks/types.d.ts +0 -15
  704. package/dist/types/parser/blocks/types.d.ts.map +0 -1
  705. package/dist/types/parser/entities/arc/index.d.ts +0 -3
  706. package/dist/types/parser/entities/arc/index.d.ts.map +0 -1
  707. package/dist/types/parser/entities/arc/parser.d.ts +0 -7
  708. package/dist/types/parser/entities/arc/parser.d.ts.map +0 -1
  709. package/dist/types/parser/entities/arc/types.d.ts +0 -13
  710. package/dist/types/parser/entities/arc/types.d.ts.map +0 -1
  711. package/dist/types/parser/entities/arc_dimension/consts.d.ts.map +0 -1
  712. package/dist/types/parser/entities/arc_dimension/index.d.ts +0 -4
  713. package/dist/types/parser/entities/arc_dimension/index.d.ts.map +0 -1
  714. package/dist/types/parser/entities/arc_dimension/parser.d.ts +0 -9
  715. package/dist/types/parser/entities/arc_dimension/parser.d.ts.map +0 -1
  716. package/dist/types/parser/entities/arc_dimension/types.d.ts +0 -99
  717. package/dist/types/parser/entities/arc_dimension/types.d.ts.map +0 -1
  718. package/dist/types/parser/entities/attdef/consts.d.ts.map +0 -1
  719. package/dist/types/parser/entities/attdef/index.d.ts +0 -4
  720. package/dist/types/parser/entities/attdef/index.d.ts.map +0 -1
  721. package/dist/types/parser/entities/attdef/parser.d.ts +0 -8
  722. package/dist/types/parser/entities/attdef/parser.d.ts.map +0 -1
  723. package/dist/types/parser/entities/attdef/types.d.ts +0 -18
  724. package/dist/types/parser/entities/attdef/types.d.ts.map +0 -1
  725. package/dist/types/parser/entities/attribute/index.d.ts +0 -3
  726. package/dist/types/parser/entities/attribute/index.d.ts.map +0 -1
  727. package/dist/types/parser/entities/attribute/parser.d.ts +0 -8
  728. package/dist/types/parser/entities/attribute/parser.d.ts.map +0 -1
  729. package/dist/types/parser/entities/attribute/types.d.ts +0 -31
  730. package/dist/types/parser/entities/attribute/types.d.ts.map +0 -1
  731. package/dist/types/parser/entities/body/index.d.ts +0 -3
  732. package/dist/types/parser/entities/body/index.d.ts.map +0 -1
  733. package/dist/types/parser/entities/body/parser.d.ts +0 -8
  734. package/dist/types/parser/entities/body/parser.d.ts.map +0 -1
  735. package/dist/types/parser/entities/body/types.d.ts +0 -10
  736. package/dist/types/parser/entities/body/types.d.ts.map +0 -1
  737. package/dist/types/parser/entities/circle/index.d.ts +0 -3
  738. package/dist/types/parser/entities/circle/index.d.ts.map +0 -1
  739. package/dist/types/parser/entities/circle/parser.d.ts +0 -8
  740. package/dist/types/parser/entities/circle/parser.d.ts.map +0 -1
  741. package/dist/types/parser/entities/circle/types.d.ts +0 -11
  742. package/dist/types/parser/entities/circle/types.d.ts.map +0 -1
  743. package/dist/types/parser/entities/dimension/index.d.ts +0 -3
  744. package/dist/types/parser/entities/dimension/index.d.ts.map +0 -1
  745. package/dist/types/parser/entities/dimension/parser.d.ts +0 -14
  746. package/dist/types/parser/entities/dimension/parser.d.ts.map +0 -1
  747. package/dist/types/parser/entities/dimension/types.d.ts +0 -202
  748. package/dist/types/parser/entities/dimension/types.d.ts.map +0 -1
  749. package/dist/types/parser/entities/ellipse/index.d.ts +0 -3
  750. package/dist/types/parser/entities/ellipse/index.d.ts.map +0 -1
  751. package/dist/types/parser/entities/ellipse/parser.d.ts +0 -8
  752. package/dist/types/parser/entities/ellipse/parser.d.ts.map +0 -1
  753. package/dist/types/parser/entities/ellipse/types.d.ts +0 -13
  754. package/dist/types/parser/entities/ellipse/types.d.ts.map +0 -1
  755. package/dist/types/parser/entities/face/consts.d.ts.map +0 -1
  756. package/dist/types/parser/entities/face/index.d.ts +0 -4
  757. package/dist/types/parser/entities/face/index.d.ts.map +0 -1
  758. package/dist/types/parser/entities/face/parser.d.ts +0 -8
  759. package/dist/types/parser/entities/face/parser.d.ts.map +0 -1
  760. package/dist/types/parser/entities/face/types.d.ts +0 -8
  761. package/dist/types/parser/entities/face/types.d.ts.map +0 -1
  762. package/dist/types/parser/entities/hatch/boundaryPathData/edge.d.ts +0 -7
  763. package/dist/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +0 -1
  764. package/dist/types/parser/entities/hatch/boundaryPathData/index.d.ts +0 -5
  765. package/dist/types/parser/entities/hatch/boundaryPathData/index.d.ts.map +0 -1
  766. package/dist/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +0 -3
  767. package/dist/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +0 -1
  768. package/dist/types/parser/entities/hatch/boundaryPathData/shared.d.ts +0 -3
  769. package/dist/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +0 -1
  770. package/dist/types/parser/entities/hatch/index.d.ts +0 -9
  771. package/dist/types/parser/entities/hatch/index.d.ts.map +0 -1
  772. package/dist/types/parser/entities/hatch/patternData.d.ts +0 -3
  773. package/dist/types/parser/entities/hatch/patternData.d.ts.map +0 -1
  774. package/dist/types/parser/entities/hatch/types/boundaryPath.d.ts +0 -60
  775. package/dist/types/parser/entities/hatch/types/boundaryPath.d.ts.map +0 -1
  776. package/dist/types/parser/entities/hatch/types/definitionLine.d.ts +0 -9
  777. package/dist/types/parser/entities/hatch/types/definitionLine.d.ts.map +0 -1
  778. package/dist/types/parser/entities/hatch/types/hatch.d.ts +0 -39
  779. package/dist/types/parser/entities/hatch/types/hatch.d.ts.map +0 -1
  780. package/dist/types/parser/entities/hatch/types/index.d.ts +0 -4
  781. package/dist/types/parser/entities/hatch/types/index.d.ts.map +0 -1
  782. package/dist/types/parser/entities/image/consts.d.ts.map +0 -1
  783. package/dist/types/parser/entities/image/index.d.ts +0 -4
  784. package/dist/types/parser/entities/image/index.d.ts.map +0 -1
  785. package/dist/types/parser/entities/image/parser.d.ts +0 -8
  786. package/dist/types/parser/entities/image/parser.d.ts.map +0 -1
  787. package/dist/types/parser/entities/image/types.d.ts +0 -55
  788. package/dist/types/parser/entities/image/types.d.ts.map +0 -1
  789. package/dist/types/parser/entities/index.d.ts +0 -42
  790. package/dist/types/parser/entities/index.d.ts.map +0 -1
  791. package/dist/types/parser/entities/insert/index.d.ts +0 -3
  792. package/dist/types/parser/entities/insert/index.d.ts.map +0 -1
  793. package/dist/types/parser/entities/insert/parser.d.ts +0 -8
  794. package/dist/types/parser/entities/insert/parser.d.ts.map +0 -1
  795. package/dist/types/parser/entities/insert/types.d.ts +0 -19
  796. package/dist/types/parser/entities/insert/types.d.ts.map +0 -1
  797. package/dist/types/parser/entities/leader/consts.d.ts.map +0 -1
  798. package/dist/types/parser/entities/leader/index.d.ts +0 -4
  799. package/dist/types/parser/entities/leader/index.d.ts.map +0 -1
  800. package/dist/types/parser/entities/leader/parser.d.ts +0 -8
  801. package/dist/types/parser/entities/leader/parser.d.ts.map +0 -1
  802. package/dist/types/parser/entities/leader/types.d.ts +0 -24
  803. package/dist/types/parser/entities/leader/types.d.ts.map +0 -1
  804. package/dist/types/parser/entities/line/index.d.ts +0 -3
  805. package/dist/types/parser/entities/line/index.d.ts.map +0 -1
  806. package/dist/types/parser/entities/line/parser.d.ts +0 -8
  807. package/dist/types/parser/entities/line/parser.d.ts.map +0 -1
  808. package/dist/types/parser/entities/line/types.d.ts +0 -11
  809. package/dist/types/parser/entities/line/types.d.ts.map +0 -1
  810. package/dist/types/parser/entities/lwpolyline/consts.d.ts.map +0 -1
  811. package/dist/types/parser/entities/lwpolyline/index.d.ts +0 -4
  812. package/dist/types/parser/entities/lwpolyline/index.d.ts.map +0 -1
  813. package/dist/types/parser/entities/lwpolyline/parser.d.ts +0 -7
  814. package/dist/types/parser/entities/lwpolyline/parser.d.ts.map +0 -1
  815. package/dist/types/parser/entities/lwpolyline/types.d.ts +0 -20
  816. package/dist/types/parser/entities/lwpolyline/types.d.ts.map +0 -1
  817. package/dist/types/parser/entities/mesh/index.d.ts +0 -3
  818. package/dist/types/parser/entities/mesh/index.d.ts.map +0 -1
  819. package/dist/types/parser/entities/mesh/parser.d.ts +0 -8
  820. package/dist/types/parser/entities/mesh/parser.d.ts.map +0 -1
  821. package/dist/types/parser/entities/mesh/types.d.ts +0 -23
  822. package/dist/types/parser/entities/mesh/types.d.ts.map +0 -1
  823. package/dist/types/parser/entities/mline/consts.d.ts.map +0 -1
  824. package/dist/types/parser/entities/mline/index.d.ts +0 -4
  825. package/dist/types/parser/entities/mline/index.d.ts.map +0 -1
  826. package/dist/types/parser/entities/mline/parser.d.ts +0 -12
  827. package/dist/types/parser/entities/mline/parser.d.ts.map +0 -1
  828. package/dist/types/parser/entities/mline/types.d.ts +0 -151
  829. package/dist/types/parser/entities/mline/types.d.ts.map +0 -1
  830. package/dist/types/parser/entities/mtext/consts.d.ts.map +0 -1
  831. package/dist/types/parser/entities/mtext/index.d.ts +0 -4
  832. package/dist/types/parser/entities/mtext/index.d.ts.map +0 -1
  833. package/dist/types/parser/entities/mtext/parser.d.ts +0 -10
  834. package/dist/types/parser/entities/mtext/parser.d.ts.map +0 -1
  835. package/dist/types/parser/entities/mtext/types.d.ts +0 -34
  836. package/dist/types/parser/entities/mtext/types.d.ts.map +0 -1
  837. package/dist/types/parser/entities/multileader/index.d.ts +0 -3
  838. package/dist/types/parser/entities/multileader/index.d.ts.map +0 -1
  839. package/dist/types/parser/entities/multileader/parser.d.ts +0 -8
  840. package/dist/types/parser/entities/multileader/parser.d.ts.map +0 -1
  841. package/dist/types/parser/entities/multileader/types.d.ts +0 -35
  842. package/dist/types/parser/entities/multileader/types.d.ts.map +0 -1
  843. package/dist/types/parser/entities/point/index.d.ts +0 -3
  844. package/dist/types/parser/entities/point/index.d.ts.map +0 -1
  845. package/dist/types/parser/entities/point/parser.d.ts +0 -7
  846. package/dist/types/parser/entities/point/parser.d.ts.map +0 -1
  847. package/dist/types/parser/entities/point/types.d.ts +0 -10
  848. package/dist/types/parser/entities/point/types.d.ts.map +0 -1
  849. package/dist/types/parser/entities/polyline/consts.d.ts.map +0 -1
  850. package/dist/types/parser/entities/polyline/index.d.ts +0 -4
  851. package/dist/types/parser/entities/polyline/index.d.ts.map +0 -1
  852. package/dist/types/parser/entities/polyline/parser.d.ts +0 -7
  853. package/dist/types/parser/entities/polyline/parser.d.ts.map +0 -1
  854. package/dist/types/parser/entities/polyline/types.d.ts +0 -20
  855. package/dist/types/parser/entities/polyline/types.d.ts.map +0 -1
  856. package/dist/types/parser/entities/ray/index.d.ts +0 -3
  857. package/dist/types/parser/entities/ray/index.d.ts.map +0 -1
  858. package/dist/types/parser/entities/ray/parser.d.ts +0 -8
  859. package/dist/types/parser/entities/ray/parser.d.ts.map +0 -1
  860. package/dist/types/parser/entities/ray/types.d.ts +0 -11
  861. package/dist/types/parser/entities/ray/types.d.ts.map +0 -1
  862. package/dist/types/parser/entities/region/index.d.ts +0 -3
  863. package/dist/types/parser/entities/region/index.d.ts.map +0 -1
  864. package/dist/types/parser/entities/region/parser.d.ts +0 -8
  865. package/dist/types/parser/entities/region/parser.d.ts.map +0 -1
  866. package/dist/types/parser/entities/region/types.d.ts +0 -10
  867. package/dist/types/parser/entities/region/types.d.ts.map +0 -1
  868. package/dist/types/parser/entities/section/index.d.ts +0 -3
  869. package/dist/types/parser/entities/section/index.d.ts.map +0 -1
  870. package/dist/types/parser/entities/section/parser.d.ts +0 -7
  871. package/dist/types/parser/entities/section/parser.d.ts.map +0 -1
  872. package/dist/types/parser/entities/section/types.d.ts +0 -20
  873. package/dist/types/parser/entities/section/types.d.ts.map +0 -1
  874. package/dist/types/parser/entities/shared.d.ts +0 -82
  875. package/dist/types/parser/entities/shared.d.ts.map +0 -1
  876. package/dist/types/parser/entities/solid/index.d.ts +0 -3
  877. package/dist/types/parser/entities/solid/index.d.ts.map +0 -1
  878. package/dist/types/parser/entities/solid/parser.d.ts +0 -8
  879. package/dist/types/parser/entities/solid/parser.d.ts.map +0 -1
  880. package/dist/types/parser/entities/solid/types.d.ts +0 -10
  881. package/dist/types/parser/entities/solid/types.d.ts.map +0 -1
  882. package/dist/types/parser/entities/solid3d/index.d.ts +0 -3
  883. package/dist/types/parser/entities/solid3d/index.d.ts.map +0 -1
  884. package/dist/types/parser/entities/solid3d/parser.d.ts +0 -8
  885. package/dist/types/parser/entities/solid3d/parser.d.ts.map +0 -1
  886. package/dist/types/parser/entities/solid3d/types.d.ts +0 -12
  887. package/dist/types/parser/entities/solid3d/types.d.ts.map +0 -1
  888. package/dist/types/parser/entities/spline/consts.d.ts.map +0 -1
  889. package/dist/types/parser/entities/spline/index.d.ts +0 -4
  890. package/dist/types/parser/entities/spline/index.d.ts.map +0 -1
  891. package/dist/types/parser/entities/spline/parser.d.ts +0 -8
  892. package/dist/types/parser/entities/spline/parser.d.ts.map +0 -1
  893. package/dist/types/parser/entities/spline/types.d.ts +0 -22
  894. package/dist/types/parser/entities/spline/types.d.ts.map +0 -1
  895. package/dist/types/parser/entities/text/consts.d.ts.map +0 -1
  896. package/dist/types/parser/entities/text/index.d.ts +0 -4
  897. package/dist/types/parser/entities/text/index.d.ts.map +0 -1
  898. package/dist/types/parser/entities/text/parser.d.ts +0 -26
  899. package/dist/types/parser/entities/text/parser.d.ts.map +0 -1
  900. package/dist/types/parser/entities/text/types.d.ts +0 -21
  901. package/dist/types/parser/entities/text/types.d.ts.map +0 -1
  902. package/dist/types/parser/entities/tolerance/index.d.ts +0 -3
  903. package/dist/types/parser/entities/tolerance/index.d.ts.map +0 -1
  904. package/dist/types/parser/entities/tolerance/parser.d.ts +0 -8
  905. package/dist/types/parser/entities/tolerance/parser.d.ts.map +0 -1
  906. package/dist/types/parser/entities/tolerance/types.d.ts +0 -17
  907. package/dist/types/parser/entities/tolerance/types.d.ts.map +0 -1
  908. package/dist/types/parser/entities/vertex/consts.d.ts.map +0 -1
  909. package/dist/types/parser/entities/vertex/index.d.ts +0 -4
  910. package/dist/types/parser/entities/vertex/index.d.ts.map +0 -1
  911. package/dist/types/parser/entities/vertex/parser.d.ts +0 -8
  912. package/dist/types/parser/entities/vertex/parser.d.ts.map +0 -1
  913. package/dist/types/parser/entities/vertex/types.d.ts +0 -17
  914. package/dist/types/parser/entities/vertex/types.d.ts.map +0 -1
  915. package/dist/types/parser/entities/viewport/index.d.ts +0 -3
  916. package/dist/types/parser/entities/viewport/index.d.ts.map +0 -1
  917. package/dist/types/parser/entities/viewport/parser.d.ts +0 -7
  918. package/dist/types/parser/entities/viewport/parser.d.ts.map +0 -1
  919. package/dist/types/parser/entities/viewport/types.d.ts +0 -187
  920. package/dist/types/parser/entities/viewport/types.d.ts.map +0 -1
  921. package/dist/types/parser/entities/wipeout/consts.d.ts.map +0 -1
  922. package/dist/types/parser/entities/wipeout/index.d.ts +0 -4
  923. package/dist/types/parser/entities/wipeout/index.d.ts.map +0 -1
  924. package/dist/types/parser/entities/wipeout/parser.d.ts +0 -8
  925. package/dist/types/parser/entities/wipeout/parser.d.ts.map +0 -1
  926. package/dist/types/parser/entities/wipeout/types.d.ts +0 -38
  927. package/dist/types/parser/entities/wipeout/types.d.ts.map +0 -1
  928. package/dist/types/parser/entities/xline/index.d.ts +0 -3
  929. package/dist/types/parser/entities/xline/index.d.ts.map +0 -1
  930. package/dist/types/parser/entities/xline/parser.d.ts +0 -8
  931. package/dist/types/parser/entities/xline/parser.d.ts.map +0 -1
  932. package/dist/types/parser/entities/xline/types.d.ts +0 -9
  933. package/dist/types/parser/entities/xline/types.d.ts.map +0 -1
  934. package/dist/types/parser/getAcadColor.d.ts +0 -8
  935. package/dist/types/parser/getAcadColor.d.ts.map +0 -1
  936. package/dist/types/parser/header/index.d.ts +0 -3
  937. package/dist/types/parser/header/index.d.ts.map +0 -1
  938. package/dist/types/parser/index.d.ts +0 -9
  939. package/dist/types/parser/index.d.ts.map +0 -1
  940. package/dist/types/parser/objects/consts.d.ts.map +0 -1
  941. package/dist/types/parser/objects/dictionary/index.d.ts +0 -3
  942. package/dist/types/parser/objects/dictionary/index.d.ts.map +0 -1
  943. package/dist/types/parser/objects/dictionary/parser.d.ts +0 -3
  944. package/dist/types/parser/objects/dictionary/parser.d.ts.map +0 -1
  945. package/dist/types/parser/objects/dictionary/types.d.ts +0 -13
  946. package/dist/types/parser/objects/dictionary/types.d.ts.map +0 -1
  947. package/dist/types/parser/objects/index.d.ts +0 -12
  948. package/dist/types/parser/objects/index.d.ts.map +0 -1
  949. package/dist/types/parser/objects/layout/consts.d.ts.map +0 -1
  950. package/dist/types/parser/objects/layout/index.d.ts +0 -4
  951. package/dist/types/parser/objects/layout/index.d.ts.map +0 -1
  952. package/dist/types/parser/objects/layout/parser.d.ts +0 -3
  953. package/dist/types/parser/objects/layout/parser.d.ts.map +0 -1
  954. package/dist/types/parser/objects/layout/types.d.ts +0 -25
  955. package/dist/types/parser/objects/layout/types.d.ts.map +0 -1
  956. package/dist/types/parser/objects/plotSettings/consts.d.ts.map +0 -1
  957. package/dist/types/parser/objects/plotSettings/index.d.ts +0 -4
  958. package/dist/types/parser/objects/plotSettings/index.d.ts.map +0 -1
  959. package/dist/types/parser/objects/plotSettings/parser.d.ts +0 -3
  960. package/dist/types/parser/objects/plotSettings/parser.d.ts.map +0 -1
  961. package/dist/types/parser/objects/plotSettings/types.d.ts +0 -37
  962. package/dist/types/parser/objects/plotSettings/types.d.ts.map +0 -1
  963. package/dist/types/parser/objects/shared.d.ts +0 -3
  964. package/dist/types/parser/objects/shared.d.ts.map +0 -1
  965. package/dist/types/parser/objects/spatial_filter/index.d.ts +0 -3
  966. package/dist/types/parser/objects/spatial_filter/index.d.ts.map +0 -1
  967. package/dist/types/parser/objects/spatial_filter/parser.d.ts +0 -3
  968. package/dist/types/parser/objects/spatial_filter/parser.d.ts.map +0 -1
  969. package/dist/types/parser/objects/spatial_filter/types.d.ts +0 -39
  970. package/dist/types/parser/objects/spatial_filter/types.d.ts.map +0 -1
  971. package/dist/types/parser/objects/types.d.ts +0 -29
  972. package/dist/types/parser/objects/types.d.ts.map +0 -1
  973. package/dist/types/parser/objects/xrecord/index.d.ts +0 -3
  974. package/dist/types/parser/objects/xrecord/index.d.ts.map +0 -1
  975. package/dist/types/parser/objects/xrecord/parser.d.ts +0 -3
  976. package/dist/types/parser/objects/xrecord/parser.d.ts.map +0 -1
  977. package/dist/types/parser/objects/xrecord/types.d.ts +0 -16
  978. package/dist/types/parser/objects/xrecord/types.d.ts.map +0 -1
  979. package/dist/types/parser/shared/extensions/parser.d.ts +0 -4
  980. package/dist/types/parser/shared/extensions/parser.d.ts.map +0 -1
  981. package/dist/types/parser/shared/index.d.ts +0 -5
  982. package/dist/types/parser/shared/index.d.ts.map +0 -1
  983. package/dist/types/parser/shared/isMatched.d.ts +0 -7
  984. package/dist/types/parser/shared/isMatched.d.ts.map +0 -1
  985. package/dist/types/parser/shared/parsePoint.d.ts +0 -8
  986. package/dist/types/parser/shared/parsePoint.d.ts.map +0 -1
  987. package/dist/types/parser/shared/parserGenerator.d.ts +0 -50
  988. package/dist/types/parser/shared/parserGenerator.d.ts.map +0 -1
  989. package/dist/types/parser/shared/xdata/index.d.ts +0 -4
  990. package/dist/types/parser/shared/xdata/index.d.ts.map +0 -1
  991. package/dist/types/parser/shared/xdata/interpreter.d.ts +0 -21
  992. package/dist/types/parser/shared/xdata/interpreter.d.ts.map +0 -1
  993. package/dist/types/parser/shared/xdata/parser.d.ts +0 -6
  994. package/dist/types/parser/shared/xdata/parser.d.ts.map +0 -1
  995. package/dist/types/parser/shared/xdata/types.d.ts +0 -10
  996. package/dist/types/parser/shared/xdata/types.d.ts.map +0 -1
  997. package/dist/types/parser/tables/blockRecord/index.d.ts +0 -3
  998. package/dist/types/parser/tables/blockRecord/index.d.ts.map +0 -1
  999. package/dist/types/parser/tables/blockRecord/parser.d.ts +0 -2
  1000. package/dist/types/parser/tables/blockRecord/parser.d.ts.map +0 -1
  1001. package/dist/types/parser/tables/blockRecord/types.d.ts +0 -11
  1002. package/dist/types/parser/tables/blockRecord/types.d.ts.map +0 -1
  1003. package/dist/types/parser/tables/dimStyle/consts.d.ts +0 -3
  1004. package/dist/types/parser/tables/dimStyle/consts.d.ts.map +0 -1
  1005. package/dist/types/parser/tables/dimStyle/index.d.ts +0 -4
  1006. package/dist/types/parser/tables/dimStyle/index.d.ts.map +0 -1
  1007. package/dist/types/parser/tables/dimStyle/parser.d.ts +0 -2
  1008. package/dist/types/parser/tables/dimStyle/parser.d.ts.map +0 -1
  1009. package/dist/types/parser/tables/dimStyle/types.d.ts +0 -128
  1010. package/dist/types/parser/tables/dimStyle/types.d.ts.map +0 -1
  1011. package/dist/types/parser/tables/index.d.ts +0 -9
  1012. package/dist/types/parser/tables/index.d.ts.map +0 -1
  1013. package/dist/types/parser/tables/layer/index.d.ts +0 -3
  1014. package/dist/types/parser/tables/layer/index.d.ts.map +0 -1
  1015. package/dist/types/parser/tables/layer/parser.d.ts +0 -2
  1016. package/dist/types/parser/tables/layer/parser.d.ts.map +0 -1
  1017. package/dist/types/parser/tables/layer/types.d.ts +0 -14
  1018. package/dist/types/parser/tables/layer/types.d.ts.map +0 -1
  1019. package/dist/types/parser/tables/ltype/consts.d.ts.map +0 -1
  1020. package/dist/types/parser/tables/ltype/index.d.ts +0 -4
  1021. package/dist/types/parser/tables/ltype/index.d.ts.map +0 -1
  1022. package/dist/types/parser/tables/ltype/parser.d.ts +0 -2
  1023. package/dist/types/parser/tables/ltype/parser.d.ts.map +0 -1
  1024. package/dist/types/parser/tables/ltype/types.d.ts +0 -22
  1025. package/dist/types/parser/tables/ltype/types.d.ts.map +0 -1
  1026. package/dist/types/parser/tables/parser.d.ts +0 -3
  1027. package/dist/types/parser/tables/parser.d.ts.map +0 -1
  1028. package/dist/types/parser/tables/shared.d.ts +0 -3
  1029. package/dist/types/parser/tables/shared.d.ts.map +0 -1
  1030. package/dist/types/parser/tables/style/index.d.ts +0 -3
  1031. package/dist/types/parser/tables/style/index.d.ts.map +0 -1
  1032. package/dist/types/parser/tables/style/parser.d.ts +0 -2
  1033. package/dist/types/parser/tables/style/parser.d.ts.map +0 -1
  1034. package/dist/types/parser/tables/style/types.d.ts +0 -15
  1035. package/dist/types/parser/tables/style/types.d.ts.map +0 -1
  1036. package/dist/types/parser/tables/types.d.ts +0 -15
  1037. package/dist/types/parser/tables/types.d.ts.map +0 -1
  1038. package/dist/types/parser/tables/vport/index.d.ts +0 -3
  1039. package/dist/types/parser/tables/vport/index.d.ts.map +0 -1
  1040. package/dist/types/parser/tables/vport/parser.d.ts +0 -2
  1041. package/dist/types/parser/tables/vport/parser.d.ts.map +0 -1
  1042. package/dist/types/parser/tables/vport/types.d.ts +0 -44
  1043. package/dist/types/parser/tables/vport/types.d.ts.map +0 -1
  1044. package/dist/types/parser/types.d.ts +0 -23
  1045. package/dist/types/parser/types.d.ts.map +0 -1
  1046. package/dist/types/stream-parser/DxfStreamParser.d.ts +0 -44
  1047. package/dist/types/stream-parser/DxfStreamParser.d.ts.map +0 -1
  1048. package/dist/types/stream-parser/index.d.ts +0 -2
  1049. package/dist/types/stream-parser/index.d.ts.map +0 -1
  1050. package/dist/types/stream-parser/streamShared/parseData.d.ts +0 -20
  1051. package/dist/types/stream-parser/streamShared/parseData.d.ts.map +0 -1
  1052. package/dist/types/types/color.d.ts +0 -4
  1053. package/dist/types/types/color.d.ts.map +0 -1
  1054. package/dist/types/types/dxfHeader.d.ts +0 -17
  1055. package/dist/types/types/dxfHeader.d.ts.map +0 -1
  1056. package/dist/types/types/index.d.ts +0 -24
  1057. package/dist/types/types/index.d.ts.map +0 -1
  1058. package/dist/types/utils/debug.d.ts.map +0 -1
  1059. package/dist/types/utils/index.d.ts +0 -18
  1060. package/dist/types/utils/index.d.ts.map +0 -1
  1061. /package/dist/{types → cjs/types}/consts/block.d.ts +0 -0
  1062. /package/dist/{types → cjs/types}/consts/color.d.ts +0 -0
  1063. /package/dist/{types → cjs/types}/consts/config.d.ts +0 -0
  1064. /package/dist/{types → cjs/types}/consts/hatch.d.ts +0 -0
  1065. /package/dist/{types → cjs/types}/consts/lineweight.d.ts +0 -0
  1066. /package/dist/{types → cjs/types}/consts/measurement.d.ts +0 -0
  1067. /package/dist/{types → cjs/types}/consts/obscuredLineTypes.d.ts +0 -0
  1068. /package/dist/{types → cjs/types}/consts/plotStyleType.d.ts +0 -0
  1069. /package/dist/{types/utils → cjs/types}/debug.d.ts +0 -0
  1070. /package/dist/{types → cjs/types}/parser/AutoCadColorIndex.d.ts +0 -0
  1071. /package/dist/{types → cjs/types}/parser/DxfArrayScanner.d.ts +0 -0
  1072. /package/dist/{types → cjs/types}/parser/entities/arc_dimension/consts.d.ts +0 -0
  1073. /package/dist/{types → cjs/types}/parser/entities/attdef/consts.d.ts +0 -0
  1074. /package/dist/{types → cjs/types}/parser/entities/face/consts.d.ts +0 -0
  1075. /package/dist/{types → cjs/types}/parser/entities/image/consts.d.ts +0 -0
  1076. /package/dist/{types → cjs/types}/parser/entities/leader/consts.d.ts +0 -0
  1077. /package/dist/{types → cjs/types}/parser/entities/lwpolyline/consts.d.ts +0 -0
  1078. /package/dist/{types → cjs/types}/parser/entities/mline/consts.d.ts +0 -0
  1079. /package/dist/{types → cjs/types}/parser/entities/mtext/consts.d.ts +0 -0
  1080. /package/dist/{types → cjs/types}/parser/entities/polyline/consts.d.ts +0 -0
  1081. /package/dist/{types → cjs/types}/parser/entities/spline/consts.d.ts +0 -0
  1082. /package/dist/{types → cjs/types}/parser/entities/text/consts.d.ts +0 -0
  1083. /package/dist/{types → cjs/types}/parser/entities/vertex/consts.d.ts +0 -0
  1084. /package/dist/{types → cjs/types}/parser/entities/wipeout/consts.d.ts +0 -0
  1085. /package/dist/{types → cjs/types}/parser/objects/consts.d.ts +0 -0
  1086. /package/dist/{types → cjs/types}/parser/objects/layout/consts.d.ts +0 -0
  1087. /package/dist/{types → cjs/types}/parser/objects/plotSettings/consts.d.ts +0 -0
  1088. /package/dist/{types → cjs/types}/parser/tables/ltype/consts.d.ts +0 -0
@@ -1,39 +0,0 @@
1
- import type { Point2D, Point3D } from '../../../types';
2
- import type { CommonDXFObject } from '../types';
3
- export interface SpatialFilterDXFObject extends CommonDXFObject {
4
- subclassMarker: 'AcDbSpatialFilter';
5
- /**
6
- * Number of points on the clip boundary
7
- * 2 = Rectangular clip boundary (lower-left and upper-right)
8
- * greater than 2 = Polyline clip boundary
9
- * */
10
- boundaryCount: number;
11
- /** Clip boundary definition point (in OCS) (always 2 or more) based on an xref scale of 1 */
12
- boundaryVertices: Point2D[];
13
- /** Normal to the plane containing the clip boundary */
14
- normal: Point3D;
15
- /** Origin used to define the local coordinate system of the clip boundary */
16
- position: Point3D;
17
- /** Clip boundary display enabled flag */
18
- isClipBoundaryDisplayed: boolean;
19
- isFrontClipping: boolean;
20
- /** Front clipping plane distance (if code `isFrontClipping` is `true`) */
21
- frontClippingDistance?: number;
22
- isBackClipping: boolean;
23
- /** Back clipping plane distance (if code `isBackClipping` is `true`) */
24
- backClippingDistance?: number;
25
- /**
26
- * 4x3 transformation matrix written out in column major order.
27
- * This matrix transforms points into the coordinate system of the clip boundary (12 entries)
28
- */
29
- wcsToOCSTransform: number[][];
30
- /**
31
- * 4x3 transformation matrix written out in column major order.
32
- * This matrix is the inverse of the original block reference (insert entity)
33
- * transformation. The original block reference transformation is
34
- * the one that is applied to all entities in the block when
35
- * the block reference is regenerated (always 12 entries)
36
- * */
37
- ocsToWCSTransform: number[][];
38
- }
39
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/spatial_filter/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAA;AACtD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAA;AAE/C,MAAM,WAAW,sBAAuB,SAAQ,eAAe;IAC7D,cAAc,EAAE,mBAAmB,CAAA;IACnC;;;;SAIK;IACL,aAAa,EAAE,MAAM,CAAA;IACrB,6FAA6F;IAC7F,gBAAgB,EAAE,OAAO,EAAE,CAAA;IAC3B,uDAAuD;IACvD,MAAM,EAAE,OAAO,CAAA;IACf,6EAA6E;IAC7E,QAAQ,EAAE,OAAO,CAAA;IACjB,yCAAyC;IACzC,uBAAuB,EAAE,OAAO,CAAA;IAChC,eAAe,EAAE,OAAO,CAAA;IACxB,0EAA0E;IAC1E,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,cAAc,EAAE,OAAO,CAAA;IACvB,wEAAwE;IACxE,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAC7B;;;OAGG;IACH,iBAAiB,EAAE,MAAM,EAAE,EAAE,CAAA;IAC7B;;;;;;SAMK;IACL,iBAAiB,EAAE,MAAM,EAAE,EAAE,CAAA;CAC9B"}
@@ -1,29 +0,0 @@
1
- import type { ScannerGroup } from "../DxfArrayScanner";
2
- export interface CommonDXFObject {
3
- /** Similar to CommonDXFEntity['type']. They're in captial letter */
4
- name: string;
5
- /**
6
- * Represented by hexadecimal string
7
- *
8
- * In DXF, every entities/objects are belongs to some others.
9
- * Root object is defined as '0' which doesn't actually exist.
10
- * */
11
- ownerObjectId: string;
12
- /** Represented by hexadecimal string, which is unique value */
13
- handle: string;
14
- /**
15
- * Application specific extension by their application-name.
16
- * As it differs by application, you have to parse by your own.
17
- * Note that group codes 102 for brackets are not included in the array.
18
- * */
19
- extensions?: Record<string, ScannerGroup[]>;
20
- }
21
- export interface HydratedDxfObject extends CommonDXFObject {
22
- ownerDictionarySoft?: HydratedDxfObject;
23
- ownerDictionaryHard?: HydratedDxfObject;
24
- ownerObject?: HydratedDxfObject;
25
- }
26
- export interface DxfDictionary extends HydratedDxfObject {
27
- entries?: Record<string, HydratedDxfObject>;
28
- }
29
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/parser/objects/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD,MAAM,WAAW,eAAe;IAC5B,oEAAoE;IACpE,IAAI,EAAE,MAAM,CAAC;IACb;;;;;SAKK;IACL,aAAa,EAAE,MAAM,CAAC;IACtB,+DAA+D;IAC/D,MAAM,EAAE,MAAM,CAAC;IACf;;;;SAIK;IACL,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,EAAE,CAAC,CAAA;CAC9C;AAED,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACtD,mBAAmB,CAAC,EAAE,iBAAiB,CAAC;IACxC,mBAAmB,CAAC,EAAE,iBAAiB,CAAC;IACxC,WAAW,CAAC,EAAE,iBAAiB,CAAC;CACnC;AAED,MAAM,WAAW,aAAc,SAAQ,iBAAiB;IACpD,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC;CAC/C"}
@@ -1,3 +0,0 @@
1
- export type * from './types';
2
- export * from './parser';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/xrecord/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAA;AAC5B,cAAc,UAAU,CAAA"}
@@ -1,3 +0,0 @@
1
- import { type DXFParserSnippet } from '../../shared/parserGenerator';
2
- export declare const XRecordDXFObjectSnippet: DXFParserSnippet[];
3
- //# sourceMappingURL=parser.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/xrecord/parser.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,gBAAgB,EAAY,MAAM,8BAA8B,CAAC;AAQ/E,eAAO,MAAM,uBAAuB,EAAE,gBAAgB,EAyBrD,CAAA"}
@@ -1,16 +0,0 @@
1
- import type { ScannerGroup } from "../../DxfArrayScanner";
2
- import type { CommonDXFObject } from "../types";
3
- import type { RecordCloneFlag } from "../consts";
4
- export interface XRecordDXFObject extends CommonDXFObject {
5
- subclassMarker: "AcDbXrecord";
6
- /**
7
- * When object is cloned like block insert, xrecord is also copied.
8
- * Therefore the name of xrecords may have duplicated names.
9
- * This flag determines how AutoCAD handles name collision.
10
- *
11
- * @see RecordCloneFlag
12
- * */
13
- cloneFlag: RecordCloneFlag;
14
- data: ScannerGroup[];
15
- }
16
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/objects/xrecord/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAEjD,MAAM,WAAW,gBAAiB,SAAQ,eAAe;IACvD,cAAc,EAAE,aAAa,CAAC;IAC9B;;;;;;SAMK;IACL,SAAS,EAAE,eAAe,CAAC;IAC3B,IAAI,EAAE,YAAY,EAAE,CAAA;CACrB"}
@@ -1,4 +0,0 @@
1
- import type { DxfArrayScanner, ScannerGroup } from "../../DxfArrayScanner";
2
- /** @internal */
3
- export declare function parseExtensions(curr: ScannerGroup, scanner: DxfArrayScanner, entity: any): void;
4
- //# sourceMappingURL=parser.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/shared/extensions/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAG3E,gBAAgB;AAChB,wBAAgB,eAAe,CAAC,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,GAAG,QAyBxF"}
@@ -1,5 +0,0 @@
1
- export * from './isMatched';
2
- export * from './xdata';
3
- export * from './extensions/parser';
4
- export declare function ensureHandle(entity: any): void;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/parser/shared/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAA;AAC3B,cAAc,SAAS,CAAA;AACvB,cAAc,qBAAqB,CAAA;AAInC,wBAAgB,YAAY,CAAC,MAAM,EAAE,GAAG,QAQvC"}
@@ -1,7 +0,0 @@
1
- import type { ScannerGroup } from "../DxfArrayScanner";
2
- /**
3
- * group이 `code`와 `value`를 갖는지 확인
4
- * `value`가 `null`이나 `undefined`인 경우 아무거나 다 매칭한다고 가정한다.
5
- */
6
- export declare function isMatched(group: ScannerGroup, code: number, value?: any): boolean;
7
- //# sourceMappingURL=isMatched.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"isMatched.d.ts","sourceRoot":"","sources":["../../../../src/parser/shared/isMatched.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD;;;GAGG;AAEH,wBAAgB,SAAS,CAAC,KAAK,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,GAAG,WAEvE"}
@@ -1,8 +0,0 @@
1
- import type { Point2D, Point3D } from '../../types';
2
- import type { DxfArrayScanner } from '../DxfArrayScanner';
3
- /**
4
- * Parses the 2D or 3D coordinate, vector, or point. When complete,
5
- * the scanner remains on the last group of the coordinate.
6
- */
7
- export declare function parsePoint(scanner: DxfArrayScanner): Point3D | Point2D;
8
- //# sourceMappingURL=parsePoint.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parsePoint.d.ts","sourceRoot":"","sources":["../../../../src/parser/shared/parsePoint.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AACpD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAE1D;;;GAGG;AACH,wBAAgB,UAAU,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,GAAG,OAAO,CA6BtE"}
@@ -1,50 +0,0 @@
1
- import type { DxfArrayScanner, ScannerGroup } from '../DxfArrayScanner';
2
- export declare const Abort: unique symbol;
3
- export interface DXFParserSnippet {
4
- code: number | number[];
5
- name?: string;
6
- /**
7
- * Define how to parse starting from given current group.
8
- * If it's not defined, current group will be ignored.
9
- *
10
- * Note that `parser` must consume their own domain's groups only.
11
- * If parser read group code which is not their domain,
12
- * you must call `scanner.rewind()` to reposition the scanner.
13
- *
14
- * @param curr current scanner group
15
- * @param scanner current scanner object
16
- * @param entity target object where parsed value be written.
17
- * you may mutate this object for complex situation,
18
- * but you must return assigining value.
19
- * @return parsed value or `Abort` symbol.
20
- * If returned value is not `Abort`, it will be assigned to `entity[name]`
21
- * If returned value is `Abort`, caller will rewind the scanner by one group.
22
- * It's very rare to return `Abort`.
23
- */
24
- parser?(curr: ScannerGroup, scanner: DxfArrayScanner, entity: any): any;
25
- /** When specific group code can be read multiple times, set this `true` */
26
- isMultiple?: boolean;
27
- /** When isMultiple is `true`, save array when `false`, replace as is when `true` */
28
- isReducible?: boolean;
29
- pushContext?: boolean;
30
- }
31
- export type DXFParser = (curr: ScannerGroup, scanner: DxfArrayScanner, target: any) => boolean;
32
- export declare function createParser(snippets: DXFParserSnippet[], defaultObject?: any): DXFParser;
33
- /**
34
- * path를 .으로 나누고, 그 서브패스의 값을 설정할 수 있게 함.
35
- * 값이 없으면 알아서 만듦
36
- *
37
- * ex) a.b -> target[a]를 반환하여 b를 대입할 수 있게 함
38
- * a.b.c -> target[a][b]를 반환하여 c를 대입할 수 있게 함
39
- *
40
- * @param target .으로 구분된 경로
41
- * @param path
42
- * @return [finalTargetObject, name]
43
- * @internal
44
- */
45
- export declare function getObjectByPath(target: any, path: string): [any, string | number];
46
- export declare function Identity({ value }: ScannerGroup): any;
47
- export declare function PointParser(_: any, scanner: DxfArrayScanner): import("../..").Point2D | import("../..").Point3D;
48
- export declare function ToBoolean({ value }: ScannerGroup): boolean;
49
- export declare function Trim({ value }: ScannerGroup): string;
50
- //# sourceMappingURL=parserGenerator.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parserGenerator.d.ts","sourceRoot":"","sources":["../../../../src/parser/shared/parserGenerator.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAKxE,eAAO,MAAM,KAAK,eAAW,CAAC;AAM9B,MAAM,WAAW,gBAAgB;IAC7B,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;;;;;;;;;;;;;;;OAiBG;IACH,MAAM,CAAC,CAAC,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,eAAe,EAAE,MAAM,EAAE,GAAG,GAAG,GAAG,CAAC;IACxE,2EAA2E;IAC3E,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,oFAAoF;IACpF,WAAW,CAAC,EAAE,OAAO,CAAC;IAItB,WAAW,CAAC,EAAE,OAAO,CAAC;CAEzB;AAKD,MAAM,MAAM,SAAS,GAAG,CACvB,IAAI,EAAE,YAAY,EAClB,OAAO,EAAE,eAAe,EACxB,MAAM,EAAE,GAAG,KACP,OAAO,CAAC;AAEb,wBAAgB,YAAY,CAC3B,QAAQ,EAAE,gBAAgB,EAAE,EAC5B,aAAa,CAAC,EAAE,GAAG,GACjB,SAAS,CA4DX;AA4CD;;;;;;;;;;;GAWG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,GAAG,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,CAsBjF;AAQD,wBAAgB,QAAQ,CAAC,EAAE,KAAK,EAAE,EAAE,YAAY,OAE/C;AAED,wBAAgB,WAAW,CAAC,CAAC,EAAE,GAAG,EAAE,OAAO,EAAE,eAAe,qDAE3D;AAED,wBAAgB,SAAS,CAAC,EAAE,KAAK,EAAE,EAAE,YAAY,WAEhD;AAED,wBAAgB,IAAI,CAAC,EAAE,KAAK,EAAE,EAAE,YAAY,GAAG,MAAM,CAEpD"}
@@ -1,4 +0,0 @@
1
- export type * from './types';
2
- export * from './parser';
3
- export * from './interpreter';
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/shared/xdata/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC"}
@@ -1,21 +0,0 @@
1
- import type { XData, XDataEntry } from './types';
2
- export type XDataInterpreterSnippet<Name extends string> = {
3
- code: number;
4
- name: Name;
5
- };
6
- type PackPairType<Snippets> = Snippets extends readonly [infer X, ...infer R] ? X extends XDataInterpreterSnippet<infer N> ? {
7
- [key in N]?: any;
8
- } & PackPairType<R> : PackPairType<R> : {};
9
- /**
10
- * xdata가 code-value의 연속인 경우에 사용 가능
11
- * ex) DSTYLE
12
- */
13
- export declare function createXDataControlInterpreter<T extends readonly XDataInterpreterSnippet<string>[]>(snippets: T): (entries: XDataEntry[]) => PackPairType<T>;
14
- interface CreateXDataCatcherParams {
15
- appName?: string;
16
- catcher(entry: XDataEntry): boolean;
17
- escaper?(entry: XDataEntry, count: number): boolean;
18
- }
19
- export declare function createXDataCatcher({ appName, catcher, escaper, }: CreateXDataCatcherParams): (xdata?: XData) => Generator<XDataEntry, void, unknown>;
20
- export {};
21
- //# sourceMappingURL=interpreter.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"interpreter.d.ts","sourceRoot":"","sources":["../../../../../src/parser/shared/xdata/interpreter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAEjD,MAAM,MAAM,uBAAuB,CAAC,IAAI,SAAS,MAAM,IAAI;IACvD,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,IAAI,CAAC;CACd,CAAC;AAEF,KAAK,YAAY,CAAC,QAAQ,IAAI,QAAQ,SAAS,SAAS,CAAC,MAAM,CAAC,EAAE,GAAG,MAAM,CAAC,CAAC,GACvE,CAAC,SAAS,uBAAuB,CAAC,MAAM,CAAC,CAAC,GAC1C;KAAG,GAAG,IAAI,CAAC,CAAC,CAAC,EAAE,GAAG;CAAE,GAAG,YAAY,CAAC,CAAC,CAAC,GACtC,YAAY,CAAC,CAAC,CAAC,GACf,EAAE,CAAC;AAET;;;GAGG;AACH,wBAAgB,6BAA6B,CACzC,CAAC,SAAS,SAAS,uBAAuB,CAAC,MAAM,CAAC,EAAE,EAClD,QAAQ,EAAE,CAAC,aACI,UAAU,EAAE,KAAG,aAAa,CAAC,CAAC,CAelD;AAED,UAAU,wBAAwB;IAC9B,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,KAAK,EAAE,UAAU,GAAG,OAAO,CAAC;IACpC,OAAO,CAAC,CAAC,KAAK,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC;CACvD;AAED,wBAAgB,kBAAkB,CAAC,EAC/B,OAAgB,EAChB,OAAO,EACP,OAAO,GACV,EAAE,wBAAwB,YACG,KAAK,0CAgBlC"}
@@ -1,6 +0,0 @@
1
- import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner';
2
- import { DXFParserSnippet } from '../parserGenerator';
3
- import type { XData } from './types';
4
- export declare const XDataParserSnippets: DXFParserSnippet[];
5
- export declare function parseXData(curr: ScannerGroup, scanner: DxfArrayScanner): XData;
6
- //# sourceMappingURL=parser.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/shared/xdata/parser.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAE3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,KAAK,EAAE,KAAK,EAAc,MAAM,SAAS,CAAC;AAEjD,eAAO,MAAM,mBAAmB,EAAE,gBAAgB,EAMjD,CAAC;AAEF,wBAAgB,UAAU,CAAC,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,eAAe,SAkGtE"}
@@ -1,10 +0,0 @@
1
- import type { Point3D } from '../../../types';
2
- export interface XData {
3
- appName: string;
4
- value: XDataEntry[];
5
- }
6
- export interface XDataEntry {
7
- name?: string;
8
- value: XDataEntry[] | number | string | Point3D;
9
- }
10
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/shared/xdata/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAa9C,MAAM,WAAW,KAAK;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,UAAU,EAAE,CAAC;CACrB;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,UAAU,EAAE,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;CACjD"}
@@ -1,3 +0,0 @@
1
- export type * from './types';
2
- export * from './parser';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/blockRecord/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const parseBlockRecordTable: import("../../shared/parserGenerator").DXFParser;
2
- //# sourceMappingURL=parser.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/blockRecord/parser.ts"],"names":[],"mappings":"AA8CA,eAAO,MAAM,qBAAqB,kDAEjC,CAAC"}
@@ -1,11 +0,0 @@
1
- import type { CommonDxfTableEntry } from '../types';
2
- export interface BlockRecordTableEntry extends CommonDxfTableEntry {
3
- subclassMarker: 'AcDbBlockTableRecord';
4
- name: string;
5
- layoutObjects: string;
6
- insertionUnits: number;
7
- explodability: number;
8
- scalability: number;
9
- bmpPreview: string;
10
- }
11
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/blockRecord/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,WAAW,qBAAsB,SAAQ,mBAAmB;IAC9D,cAAc,EAAE,sBAAsB,CAAC;IACvC,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACtB"}
@@ -1,3 +0,0 @@
1
- import type { DimStyleVariableSchema } from './types';
2
- export declare const DimStyleVariablesSchema: DimStyleVariableSchema[];
3
- //# sourceMappingURL=consts.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/dimStyle/consts.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,SAAS,CAAC;AAEtD,eAAO,MAAM,uBAAuB,0BA+bP,CAAC"}
@@ -1,4 +0,0 @@
1
- export type * from './types';
2
- export * from './consts';
3
- export * from './parser';
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/dimStyle/index.ts"],"names":[],"mappings":"AAAA,mBAAmB,SAAS,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const parseDimStyle: import("../../shared/parserGenerator").DXFParser;
2
- //# sourceMappingURL=parser.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/dimStyle/parser.ts"],"names":[],"mappings":"AAoCA,eAAO,MAAM,aAAa,kDAA4C,CAAC"}
@@ -1,128 +0,0 @@
1
- import type { DimensionTextHorizontal, DimensionTextVertical, DimensionZeroSuppression, DimensionZeroSuppressionAngular } from '../../../consts';
2
- import type { CommonDxfTableEntry } from '../types';
3
- /**
4
- * Union of all possible dimension style variable names.
5
- *
6
- * @see DimStyleVariables
7
- * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=GUID-F2FAD36F-0CE3-4943-9DAD-A9BCD2AE81DA
8
- */
9
- export type DimStyleVariable = 'DIMPOST' | 'DIMAPOST' | 'DIMBLK_OBSOLETE' | 'DIMBLK1_OBSOLETE' | 'DIMBLK2_OBSOLETE' | 'DIMSCALE' | 'DIMASZ' | 'DIMEXO' | 'DIMDLI' | 'DIMEXE' | 'DIMRND' | 'DIMDLE' | 'DIMTP' | 'DIMTM' | 'DIMTXT' | 'DIMCEN' | 'DIMTSZ' | 'DIMALTF' | 'DIMLFAC' | 'DIMLTEX1' | 'DIMLTEX2' | 'DIMLTYPE' | 'DIMTVP' | 'DIMTFAC' | 'DIMGAP' | 'DIMALTRND' | 'DIMTOL' | 'DIMLIM' | 'DIMTIH' | 'DIMTOH' | 'DIMSE1' | 'DIMSE2' | 'DIMTAD' | 'DIMZIN' | 'DIMAZIN' | 'DIMALT' | 'DIMALTD' | 'DIMTOFL' | 'DIMSAH' | 'DIMTIX' | 'DIMSOXD' | 'DIMCLRD' | 'DIMCLRE' | 'DIMCLRT' | 'DIMADEC' | 'DIMUNIT' | 'DIMDEC' | 'DIMTDEC' | 'DIMALTU' | 'DIMALTTD' | 'DIMAUNIT' | 'DIMFRAC' | 'DIMFXL' | 'DIMFXLON' | 'DIMLUNIT' | 'DIMDSEP' | 'DIMTMOVE' | 'DIMJUST' | 'DIMSD1' | 'DIMSD2' | 'DIMTOLJ' | 'DIMTZIN' | 'DIMALTZ' | 'DIMALTTZ' | 'DIMFIT' | 'DIMUPT' | 'DIMATFIT' | 'DIMTXSTY' | 'DIMLDRBLK' | 'DIMBLK' | 'DIMBLK1' | 'DIMBLK2' | 'DIMLWD' | 'DIMLWE';
10
- export interface DimStyleVariableSchema {
11
- name: string;
12
- code: number;
13
- defaultValue?: string | number;
14
- defaultValueImperial?: string | number;
15
- }
16
- /**
17
- * Key-value pairs of dimension style variables. Useful when combined with `DimStyleVariable`.
18
- *
19
- * @see DimStyleVariable
20
- */
21
- export type DimStyleVariables = {
22
- DIMPOST?: string;
23
- DIMAPOST?: string;
24
- DIMBLK_OBSOLETE?: string;
25
- DIMBLK1_OBSOLETE?: string;
26
- DIMBLK2_OBSOLETE?: string;
27
- DIMSCALE: number;
28
- DIMASZ: number;
29
- DIMEXO: number;
30
- DIMDLI: number;
31
- DIMEXE: number;
32
- DIMRND: number;
33
- DIMDLE: number;
34
- DIMTP: number;
35
- DIMTM: number;
36
- DIMTXT: number;
37
- DIMCEN: number;
38
- DIMTSZ: number;
39
- DIMALTF: number;
40
- DIMLFAC: number;
41
- /**
42
- * Sets the linetype of the first extension line. The value is `BYLAYER`, `BYBLOCK`, or the name of a linetype.
43
- *
44
- * @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-535BAECA-312A-4841-A064-4FDB3469AAD0
45
- */
46
- DIMLTEX1: string;
47
- /**
48
- * Sets the linetype of the second extension line. The value is `BYLAYER`, `BYBLOCK`, or the name of a linetype.
49
- *
50
- * @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-E2101E66-6741-40BF-B62D-E8201F51BA7F
51
- */
52
- DIMLTEX2: string;
53
- DIMTVP: number;
54
- DIMTFAC: number;
55
- DIMGAP: number;
56
- DIMALTRND: number;
57
- DIMTOL: number;
58
- DIMLIM: number;
59
- DIMTIH: number;
60
- DIMTOH: number;
61
- DIMSE1: 0 | 1;
62
- DIMSE2: 0 | 1;
63
- DIMTAD: DimensionTextVertical;
64
- DIMZIN: DimensionZeroSuppression;
65
- DIMAZIN: DimensionZeroSuppressionAngular;
66
- DIMALT: 0 | 1;
67
- DIMALTD: number;
68
- DIMTOFL: 0 | 1;
69
- DIMSAH: 0 | 1;
70
- DIMTIX: 0 | 1;
71
- DIMSOXD: 0 | 1;
72
- DIMCLRD: number;
73
- DIMCLRE: number;
74
- DIMCLRT: number;
75
- DIMADEC: number;
76
- DIMUNIT?: number;
77
- DIMDEC: number;
78
- DIMTDEC: number;
79
- DIMALTU: number;
80
- DIMALTTD: number;
81
- DIMAUNIT: number;
82
- DIMFRAC: number;
83
- /**
84
- * Sets the total length of the extension lines starting from the dimension line toward the dimension origin.
85
- *
86
- * @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-CC0F54D4-688B-4A14-9926-9840BCB30FCA
87
- */
88
- DIMFXL: number;
89
- /**
90
- * Controls whether extension lines are set to a fixed length.
91
- *
92
- * When DIMFXLON is on (`1`), extension lines are set to the length specified by `DIMFXL`.
93
- *
94
- * @see https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-D0E2EA4A-4CA2-4286-9439-55A19726C166
95
- */
96
- DIMFXLON: 0 | 1;
97
- DIMLUNIT: number;
98
- /**
99
- * Sets the linetype of the dimension line. The value is `BYLAYER`, `BYBLOCK`, or the name of a linetype.
100
- *
101
- * @see https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-08054AEC-6DB4-4E69-B992-C6D8FC0021EC
102
- */
103
- DIMLTYPE: string;
104
- DIMDSEP: string;
105
- DIMTMOVE: number;
106
- DIMJUST: DimensionTextHorizontal;
107
- DIMSD1: 0 | 1;
108
- DIMSD2: 0 | 1;
109
- DIMTOLJ: DimensionTextVertical;
110
- DIMTZIN: DimensionZeroSuppression;
111
- DIMALTZ: DimensionZeroSuppression;
112
- DIMALTTZ: DimensionZeroSuppression;
113
- DIMFIT?: number;
114
- DIMUPT: number;
115
- DIMATFIT: number;
116
- DIMTXSTY?: string;
117
- DIMLDRBLK?: string;
118
- DIMBLK?: string;
119
- DIMBLK1?: string;
120
- DIMBLK2?: string;
121
- DIMLWD: number;
122
- DIMLWE: number;
123
- };
124
- export type DimStylesTableEntry = DimStyleVariables & CommonDxfTableEntry & {
125
- styleName: string;
126
- subclassMarker: 'AcDbDimStyleTableRecord';
127
- };
128
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/parser/tables/dimStyle/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,uBAAuB,EACvB,qBAAqB,EACrB,wBAAwB,EACxB,+BAA+B,EAClC,MAAM,iBAAiB,CAAC;AACzB,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,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,SAAS,GACT,UAAU,GACV,UAAU,GACV,UAAU,GACV,QAAQ,GACR,SAAS,GACT,QAAQ,GACR,WAAW,GACX,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,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,QAAQ,GACR,UAAU,GACV,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,WAAW,GACX,QAAQ,GACR,SAAS,GACT,SAAS,GACT,QAAQ,GACR,QAAQ,CAAC;AAEf,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,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd,MAAM,EAAE,qBAAqB,CAAC;IAC9B,MAAM,EAAE,wBAAwB,CAAC;IACjC,OAAO,EAAE,+BAA+B,CAAC;IACzC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;IACf,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;;;OAMG;IACH,QAAQ,EAAE,CAAC,GAAG,CAAC,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,uBAAuB,CAAC;IACjC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC;IACd,OAAO,EAAE,qBAAqB,CAAC;IAC/B,OAAO,EAAE,wBAAwB,CAAC;IAClC,OAAO,EAAE,wBAAwB,CAAC;IAClC,QAAQ,EAAE,wBAAwB,CAAC;IACnC,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,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,3 +0,0 @@
1
- export type * from './types';
2
- export * from './parser';
3
- //# sourceMappingURL=index.d.ts.map
@@ -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,2 +0,0 @@
1
- export declare const parseLayerTable: import("../../shared/parserGenerator").DXFParser;
2
- //# sourceMappingURL=parser.d.ts.map
@@ -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,4 +0,0 @@
1
- export type * from './types';
2
- export * from './consts';
3
- export * from './parser';
4
- //# sourceMappingURL=index.d.ts.map
@@ -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,2 +0,0 @@
1
- export declare const parseLTypeTable: import("../../shared/parserGenerator").DXFParser;
2
- //# sourceMappingURL=parser.d.ts.map
@@ -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,3 +0,0 @@
1
- import type { DxfArrayScanner, ScannerGroup } from '../DxfArrayScanner';
2
- export declare function parseTables(curr: ScannerGroup, scanner: DxfArrayScanner): any;
3
- //# sourceMappingURL=parser.d.ts.map
@@ -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,3 +0,0 @@
1
- import { DXFParserSnippet } from '../shared/parserGenerator';
2
- export declare const CommonTableEntryParserSnippets: DXFParserSnippet[];
3
- //# sourceMappingURL=shared.d.ts.map
@@ -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,3 +0,0 @@
1
- export type * from './types';
2
- export * from './parser';
3
- //# sourceMappingURL=index.d.ts.map
@@ -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"}