dxf-json 0.10.1 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1087) 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.map +1 -0
  7. package/dist/cjs/types/consts/hatch.d.ts.map +1 -0
  8. package/dist/cjs/types/consts/header.d.ts +10 -0
  9. package/dist/cjs/types/consts/header.d.ts.map +1 -0
  10. package/dist/cjs/types/consts/lineweight.d.ts.map +1 -0
  11. package/dist/cjs/types/consts/measurement.d.ts.map +1 -0
  12. package/dist/cjs/types/consts/obscuredLineTypes.d.ts.map +1 -0
  13. package/dist/cjs/types/consts/plotStyleType.d.ts.map +1 -0
  14. package/dist/cjs/types/consts/viewport.d.ts +58 -0
  15. package/dist/cjs/types/consts/viewport.d.ts.map +1 -0
  16. package/dist/cjs/types/debug.d.ts.map +1 -0
  17. package/dist/cjs/types/index.d.ts +174 -0
  18. package/dist/cjs/types/index.d.ts.map +1 -0
  19. package/dist/cjs/types/parser/AutoCadColorIndex.d.ts.map +1 -0
  20. package/dist/cjs/types/parser/DxfArrayScanner.d.ts.map +1 -0
  21. package/dist/cjs/types/parser/DxfParser.d.ts +29 -0
  22. package/dist/cjs/types/parser/DxfParser.d.ts.map +1 -0
  23. package/dist/cjs/types/parser/ParseHelpers.d.ts +8 -0
  24. package/dist/cjs/types/parser/ParseHelpers.d.ts.map +1 -0
  25. package/dist/cjs/types/parser/blocks/parser.d.ts +4 -0
  26. package/dist/cjs/types/parser/blocks/parser.d.ts.map +1 -0
  27. package/dist/cjs/types/parser/blocks/types.d.ts +15 -0
  28. package/dist/cjs/types/parser/blocks/types.d.ts.map +1 -0
  29. package/dist/cjs/types/parser/classes/consts.d.ts +18 -0
  30. package/dist/cjs/types/parser/classes/consts.d.ts.map +1 -0
  31. package/dist/cjs/types/parser/classes/parser.d.ts +6 -0
  32. package/dist/cjs/types/parser/classes/parser.d.ts.map +1 -0
  33. package/dist/cjs/types/parser/classes/types.d.ts +60 -0
  34. package/dist/cjs/types/parser/classes/types.d.ts.map +1 -0
  35. package/dist/cjs/types/parser/entities/arc/parser.d.ts +7 -0
  36. package/dist/cjs/types/parser/entities/arc/parser.d.ts.map +1 -0
  37. package/dist/cjs/types/parser/entities/arc/types.d.ts +13 -0
  38. package/dist/cjs/types/parser/entities/arc/types.d.ts.map +1 -0
  39. package/dist/cjs/types/parser/entities/arc_dimension/consts.d.ts.map +1 -0
  40. package/dist/cjs/types/parser/entities/arc_dimension/parser.d.ts +9 -0
  41. package/dist/cjs/types/parser/entities/arc_dimension/parser.d.ts.map +1 -0
  42. package/dist/cjs/types/parser/entities/arc_dimension/types.d.ts +99 -0
  43. package/dist/cjs/types/parser/entities/arc_dimension/types.d.ts.map +1 -0
  44. package/dist/cjs/types/parser/entities/attdef/consts.d.ts.map +1 -0
  45. package/dist/cjs/types/parser/entities/attdef/parser.d.ts +8 -0
  46. package/dist/cjs/types/parser/entities/attdef/parser.d.ts.map +1 -0
  47. package/dist/cjs/types/parser/entities/attdef/types.d.ts +18 -0
  48. package/dist/cjs/types/parser/entities/attdef/types.d.ts.map +1 -0
  49. package/dist/cjs/types/parser/entities/attribute/parser.d.ts +8 -0
  50. package/dist/cjs/types/parser/entities/attribute/parser.d.ts.map +1 -0
  51. package/dist/cjs/types/parser/entities/attribute/types.d.ts +31 -0
  52. package/dist/cjs/types/parser/entities/attribute/types.d.ts.map +1 -0
  53. package/dist/cjs/types/parser/entities/body/parser.d.ts +8 -0
  54. package/dist/cjs/types/parser/entities/body/parser.d.ts.map +1 -0
  55. package/dist/cjs/types/parser/entities/body/types.d.ts +10 -0
  56. package/dist/cjs/types/parser/entities/body/types.d.ts.map +1 -0
  57. package/dist/cjs/types/parser/entities/circle/parser.d.ts +8 -0
  58. package/dist/cjs/types/parser/entities/circle/parser.d.ts.map +1 -0
  59. package/dist/cjs/types/parser/entities/circle/types.d.ts +11 -0
  60. package/dist/cjs/types/parser/entities/circle/types.d.ts.map +1 -0
  61. package/dist/cjs/types/parser/entities/consts.d.ts +5 -0
  62. package/dist/cjs/types/parser/entities/consts.d.ts.map +1 -0
  63. package/dist/cjs/types/parser/entities/dimension/parser.d.ts +14 -0
  64. package/dist/cjs/types/parser/entities/dimension/parser.d.ts.map +1 -0
  65. package/dist/cjs/types/parser/entities/dimension/types.d.ts +202 -0
  66. package/dist/cjs/types/parser/entities/dimension/types.d.ts.map +1 -0
  67. package/dist/cjs/types/parser/entities/ellipse/parser.d.ts +8 -0
  68. package/dist/cjs/types/parser/entities/ellipse/parser.d.ts.map +1 -0
  69. package/dist/cjs/types/parser/entities/ellipse/types.d.ts +13 -0
  70. package/dist/cjs/types/parser/entities/ellipse/types.d.ts.map +1 -0
  71. package/dist/cjs/types/parser/entities/face/consts.d.ts.map +1 -0
  72. package/dist/cjs/types/parser/entities/face/parser.d.ts +8 -0
  73. package/dist/cjs/types/parser/entities/face/parser.d.ts.map +1 -0
  74. package/dist/cjs/types/parser/entities/face/types.d.ts +8 -0
  75. package/dist/cjs/types/parser/entities/face/types.d.ts.map +1 -0
  76. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/edge.d.ts +7 -0
  77. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +1 -0
  78. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/parser.d.ts +5 -0
  79. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/parser.d.ts.map +1 -0
  80. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +3 -0
  81. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +1 -0
  82. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/shared.d.ts +3 -0
  83. package/dist/cjs/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +1 -0
  84. package/dist/cjs/types/parser/entities/hatch/parser.d.ts +8 -0
  85. package/dist/cjs/types/parser/entities/hatch/parser.d.ts.map +1 -0
  86. package/dist/cjs/types/parser/entities/hatch/patternData.d.ts +3 -0
  87. package/dist/cjs/types/parser/entities/hatch/patternData.d.ts.map +1 -0
  88. package/dist/cjs/types/parser/entities/hatch/types/boundaryPath.d.ts +60 -0
  89. package/dist/cjs/types/parser/entities/hatch/types/boundaryPath.d.ts.map +1 -0
  90. package/dist/cjs/types/parser/entities/hatch/types/definitionLine.d.ts +9 -0
  91. package/dist/cjs/types/parser/entities/hatch/types/definitionLine.d.ts.map +1 -0
  92. package/dist/cjs/types/parser/entities/hatch/types/hatch.d.ts +39 -0
  93. package/dist/cjs/types/parser/entities/hatch/types/hatch.d.ts.map +1 -0
  94. package/dist/cjs/types/parser/entities/image/consts.d.ts.map +1 -0
  95. package/dist/cjs/types/parser/entities/image/parser.d.ts +8 -0
  96. package/dist/cjs/types/parser/entities/image/parser.d.ts.map +1 -0
  97. package/dist/cjs/types/parser/entities/image/types.d.ts +55 -0
  98. package/dist/cjs/types/parser/entities/image/types.d.ts.map +1 -0
  99. package/dist/cjs/types/parser/entities/insert/parser.d.ts +8 -0
  100. package/dist/cjs/types/parser/entities/insert/parser.d.ts.map +1 -0
  101. package/dist/cjs/types/parser/entities/insert/types.d.ts +19 -0
  102. package/dist/cjs/types/parser/entities/insert/types.d.ts.map +1 -0
  103. package/dist/cjs/types/parser/entities/leader/consts.d.ts.map +1 -0
  104. package/dist/cjs/types/parser/entities/leader/parser.d.ts +8 -0
  105. package/dist/cjs/types/parser/entities/leader/parser.d.ts.map +1 -0
  106. package/dist/cjs/types/parser/entities/leader/types.d.ts +24 -0
  107. package/dist/cjs/types/parser/entities/leader/types.d.ts.map +1 -0
  108. package/dist/cjs/types/parser/entities/light/consts.d.ts +11 -0
  109. package/dist/cjs/types/parser/entities/light/consts.d.ts.map +1 -0
  110. package/dist/cjs/types/parser/entities/light/parser.d.ts +10 -0
  111. package/dist/cjs/types/parser/entities/light/parser.d.ts.map +1 -0
  112. package/dist/cjs/types/parser/entities/light/types.d.ts +69 -0
  113. package/dist/cjs/types/parser/entities/light/types.d.ts.map +1 -0
  114. package/dist/cjs/types/parser/entities/line/parser.d.ts +8 -0
  115. package/dist/cjs/types/parser/entities/line/parser.d.ts.map +1 -0
  116. package/dist/cjs/types/parser/entities/line/types.d.ts +11 -0
  117. package/dist/cjs/types/parser/entities/line/types.d.ts.map +1 -0
  118. package/dist/cjs/types/parser/entities/lwpolyline/consts.d.ts.map +1 -0
  119. package/dist/cjs/types/parser/entities/lwpolyline/parser.d.ts +7 -0
  120. package/dist/cjs/types/parser/entities/lwpolyline/parser.d.ts.map +1 -0
  121. package/dist/cjs/types/parser/entities/lwpolyline/types.d.ts +20 -0
  122. package/dist/cjs/types/parser/entities/lwpolyline/types.d.ts.map +1 -0
  123. package/dist/cjs/types/parser/entities/mesh/parser.d.ts +8 -0
  124. package/dist/cjs/types/parser/entities/mesh/parser.d.ts.map +1 -0
  125. package/dist/cjs/types/parser/entities/mesh/types.d.ts +23 -0
  126. package/dist/cjs/types/parser/entities/mesh/types.d.ts.map +1 -0
  127. package/dist/cjs/types/parser/entities/mline/consts.d.ts.map +1 -0
  128. package/dist/cjs/types/parser/entities/mline/parser.d.ts +12 -0
  129. package/dist/cjs/types/parser/entities/mline/parser.d.ts.map +1 -0
  130. package/dist/cjs/types/parser/entities/mline/types.d.ts +151 -0
  131. package/dist/cjs/types/parser/entities/mline/types.d.ts.map +1 -0
  132. package/dist/cjs/types/parser/entities/mtext/consts.d.ts.map +1 -0
  133. package/dist/cjs/types/parser/entities/mtext/parser.d.ts +10 -0
  134. package/dist/cjs/types/parser/entities/mtext/parser.d.ts.map +1 -0
  135. package/dist/cjs/types/parser/entities/mtext/types.d.ts +34 -0
  136. package/dist/cjs/types/parser/entities/mtext/types.d.ts.map +1 -0
  137. package/dist/cjs/types/parser/entities/multileader/parser.d.ts +8 -0
  138. package/dist/cjs/types/parser/entities/multileader/parser.d.ts.map +1 -0
  139. package/dist/cjs/types/parser/entities/multileader/types.d.ts +35 -0
  140. package/dist/cjs/types/parser/entities/multileader/types.d.ts.map +1 -0
  141. package/dist/cjs/types/parser/entities/parser.d.ts +8 -0
  142. package/dist/cjs/types/parser/entities/parser.d.ts.map +1 -0
  143. package/dist/cjs/types/parser/entities/point/parser.d.ts +7 -0
  144. package/dist/cjs/types/parser/entities/point/parser.d.ts.map +1 -0
  145. package/dist/cjs/types/parser/entities/point/types.d.ts +10 -0
  146. package/dist/cjs/types/parser/entities/point/types.d.ts.map +1 -0
  147. package/dist/cjs/types/parser/entities/polyline/consts.d.ts.map +1 -0
  148. package/dist/cjs/types/parser/entities/polyline/parser.d.ts +7 -0
  149. package/dist/cjs/types/parser/entities/polyline/parser.d.ts.map +1 -0
  150. package/dist/cjs/types/parser/entities/polyline/types.d.ts +20 -0
  151. package/dist/cjs/types/parser/entities/polyline/types.d.ts.map +1 -0
  152. package/dist/cjs/types/parser/entities/ray/parser.d.ts +8 -0
  153. package/dist/cjs/types/parser/entities/ray/parser.d.ts.map +1 -0
  154. package/dist/cjs/types/parser/entities/ray/types.d.ts +11 -0
  155. package/dist/cjs/types/parser/entities/ray/types.d.ts.map +1 -0
  156. package/dist/cjs/types/parser/entities/region/parser.d.ts +8 -0
  157. package/dist/cjs/types/parser/entities/region/parser.d.ts.map +1 -0
  158. package/dist/cjs/types/parser/entities/region/types.d.ts +10 -0
  159. package/dist/cjs/types/parser/entities/region/types.d.ts.map +1 -0
  160. package/dist/cjs/types/parser/entities/section/parser.d.ts +7 -0
  161. package/dist/cjs/types/parser/entities/section/parser.d.ts.map +1 -0
  162. package/dist/cjs/types/parser/entities/section/types.d.ts +20 -0
  163. package/dist/cjs/types/parser/entities/section/types.d.ts.map +1 -0
  164. package/dist/cjs/types/parser/entities/shared.d.ts +82 -0
  165. package/dist/cjs/types/parser/entities/shared.d.ts.map +1 -0
  166. package/dist/cjs/types/parser/entities/solid/parser.d.ts +8 -0
  167. package/dist/cjs/types/parser/entities/solid/parser.d.ts.map +1 -0
  168. package/dist/cjs/types/parser/entities/solid/types.d.ts +10 -0
  169. package/dist/cjs/types/parser/entities/solid/types.d.ts.map +1 -0
  170. package/dist/cjs/types/parser/entities/solid3d/parser.d.ts +8 -0
  171. package/dist/cjs/types/parser/entities/solid3d/parser.d.ts.map +1 -0
  172. package/dist/cjs/types/parser/entities/solid3d/types.d.ts +12 -0
  173. package/dist/cjs/types/parser/entities/solid3d/types.d.ts.map +1 -0
  174. package/dist/cjs/types/parser/entities/spline/consts.d.ts.map +1 -0
  175. package/dist/cjs/types/parser/entities/spline/parser.d.ts +8 -0
  176. package/dist/cjs/types/parser/entities/spline/parser.d.ts.map +1 -0
  177. package/dist/cjs/types/parser/entities/spline/types.d.ts +22 -0
  178. package/dist/cjs/types/parser/entities/spline/types.d.ts.map +1 -0
  179. package/dist/cjs/types/parser/entities/sun/parser.d.ts +10 -0
  180. package/dist/cjs/types/parser/entities/sun/parser.d.ts.map +1 -0
  181. package/dist/cjs/types/parser/entities/sun/types.d.ts +80 -0
  182. package/dist/cjs/types/parser/entities/sun/types.d.ts.map +1 -0
  183. package/dist/cjs/types/parser/entities/text/consts.d.ts.map +1 -0
  184. package/dist/cjs/types/parser/entities/text/parser.d.ts +26 -0
  185. package/dist/cjs/types/parser/entities/text/parser.d.ts.map +1 -0
  186. package/dist/cjs/types/parser/entities/text/types.d.ts +21 -0
  187. package/dist/cjs/types/parser/entities/text/types.d.ts.map +1 -0
  188. package/dist/cjs/types/parser/entities/tolerance/parser.d.ts +8 -0
  189. package/dist/cjs/types/parser/entities/tolerance/parser.d.ts.map +1 -0
  190. package/dist/cjs/types/parser/entities/tolerance/types.d.ts +17 -0
  191. package/dist/cjs/types/parser/entities/tolerance/types.d.ts.map +1 -0
  192. package/dist/cjs/types/parser/entities/vertex/consts.d.ts.map +1 -0
  193. package/dist/cjs/types/parser/entities/vertex/parser.d.ts +8 -0
  194. package/dist/cjs/types/parser/entities/vertex/parser.d.ts.map +1 -0
  195. package/dist/cjs/types/parser/entities/vertex/types.d.ts +17 -0
  196. package/dist/cjs/types/parser/entities/vertex/types.d.ts.map +1 -0
  197. package/dist/cjs/types/parser/entities/viewport/parser.d.ts +7 -0
  198. package/dist/cjs/types/parser/entities/viewport/parser.d.ts.map +1 -0
  199. package/dist/cjs/types/parser/entities/viewport/types.d.ts +187 -0
  200. package/dist/cjs/types/parser/entities/viewport/types.d.ts.map +1 -0
  201. package/dist/cjs/types/parser/entities/wipeout/consts.d.ts.map +1 -0
  202. package/dist/cjs/types/parser/entities/wipeout/parser.d.ts +8 -0
  203. package/dist/cjs/types/parser/entities/wipeout/parser.d.ts.map +1 -0
  204. package/dist/cjs/types/parser/entities/wipeout/types.d.ts +38 -0
  205. package/dist/cjs/types/parser/entities/wipeout/types.d.ts.map +1 -0
  206. package/dist/cjs/types/parser/entities/xline/parser.d.ts +8 -0
  207. package/dist/cjs/types/parser/entities/xline/parser.d.ts.map +1 -0
  208. package/dist/cjs/types/parser/entities/xline/types.d.ts +9 -0
  209. package/dist/cjs/types/parser/entities/xline/types.d.ts.map +1 -0
  210. package/dist/cjs/types/parser/getAcadColor.d.ts +8 -0
  211. package/dist/cjs/types/parser/getAcadColor.d.ts.map +1 -0
  212. package/dist/cjs/types/parser/header/parser.d.ts +3 -0
  213. package/dist/cjs/types/parser/header/parser.d.ts.map +1 -0
  214. package/dist/cjs/types/parser/objects/consts.d.ts.map +1 -0
  215. package/dist/cjs/types/parser/objects/dictionary/parser.d.ts +3 -0
  216. package/dist/cjs/types/parser/objects/dictionary/parser.d.ts.map +1 -0
  217. package/dist/cjs/types/parser/objects/dictionary/types.d.ts +13 -0
  218. package/dist/cjs/types/parser/objects/dictionary/types.d.ts.map +1 -0
  219. package/dist/cjs/types/parser/objects/layout/consts.d.ts.map +1 -0
  220. package/dist/cjs/types/parser/objects/layout/parser.d.ts +3 -0
  221. package/dist/cjs/types/parser/objects/layout/parser.d.ts.map +1 -0
  222. package/dist/cjs/types/parser/objects/layout/types.d.ts +25 -0
  223. package/dist/cjs/types/parser/objects/layout/types.d.ts.map +1 -0
  224. package/dist/cjs/types/parser/objects/parser.d.ts +5 -0
  225. package/dist/cjs/types/parser/objects/parser.d.ts.map +1 -0
  226. package/dist/cjs/types/parser/objects/plotSettings/consts.d.ts.map +1 -0
  227. package/dist/cjs/types/parser/objects/plotSettings/parser.d.ts +3 -0
  228. package/dist/cjs/types/parser/objects/plotSettings/parser.d.ts.map +1 -0
  229. package/dist/cjs/types/parser/objects/plotSettings/types.d.ts +37 -0
  230. package/dist/cjs/types/parser/objects/plotSettings/types.d.ts.map +1 -0
  231. package/dist/cjs/types/parser/objects/shared.d.ts +3 -0
  232. package/dist/cjs/types/parser/objects/shared.d.ts.map +1 -0
  233. package/dist/cjs/types/parser/objects/spatial_filter/parser.d.ts +3 -0
  234. package/dist/cjs/types/parser/objects/spatial_filter/parser.d.ts.map +1 -0
  235. package/dist/cjs/types/parser/objects/spatial_filter/types.d.ts +39 -0
  236. package/dist/cjs/types/parser/objects/spatial_filter/types.d.ts.map +1 -0
  237. package/dist/cjs/types/parser/objects/types.d.ts +29 -0
  238. package/dist/cjs/types/parser/objects/types.d.ts.map +1 -0
  239. package/dist/cjs/types/parser/objects/xrecord/parser.d.ts +3 -0
  240. package/dist/cjs/types/parser/objects/xrecord/parser.d.ts.map +1 -0
  241. package/dist/cjs/types/parser/objects/xrecord/types.d.ts +16 -0
  242. package/dist/cjs/types/parser/objects/xrecord/types.d.ts.map +1 -0
  243. package/dist/cjs/types/parser/shared/ensureHandle.d.ts +2 -0
  244. package/dist/cjs/types/parser/shared/ensureHandle.d.ts.map +1 -0
  245. package/dist/cjs/types/parser/shared/extensions/parser.d.ts +4 -0
  246. package/dist/cjs/types/parser/shared/extensions/parser.d.ts.map +1 -0
  247. package/dist/cjs/types/parser/shared/isMatched.d.ts +7 -0
  248. package/dist/cjs/types/parser/shared/isMatched.d.ts.map +1 -0
  249. package/dist/cjs/types/parser/shared/parsePoint.d.ts +8 -0
  250. package/dist/cjs/types/parser/shared/parsePoint.d.ts.map +1 -0
  251. package/dist/cjs/types/parser/shared/parserGenerator.d.ts +50 -0
  252. package/dist/cjs/types/parser/shared/parserGenerator.d.ts.map +1 -0
  253. package/dist/cjs/types/parser/shared/xdata/parser.d.ts +6 -0
  254. package/dist/cjs/types/parser/shared/xdata/parser.d.ts.map +1 -0
  255. package/dist/cjs/types/parser/shared/xdata/types.d.ts +16 -0
  256. package/dist/cjs/types/parser/shared/xdata/types.d.ts.map +1 -0
  257. package/dist/cjs/types/parser/tables/appId/parser.d.ts +4 -0
  258. package/dist/cjs/types/parser/tables/appId/parser.d.ts.map +1 -0
  259. package/dist/cjs/types/parser/tables/appId/types.d.ts +20 -0
  260. package/dist/cjs/types/parser/tables/appId/types.d.ts.map +1 -0
  261. package/dist/cjs/types/parser/tables/blockRecord/parser.d.ts +2 -0
  262. package/dist/cjs/types/parser/tables/blockRecord/parser.d.ts.map +1 -0
  263. package/dist/cjs/types/parser/tables/blockRecord/types.d.ts +11 -0
  264. package/dist/cjs/types/parser/tables/blockRecord/types.d.ts.map +1 -0
  265. package/dist/cjs/types/parser/tables/consts.d.ts +38 -0
  266. package/dist/cjs/types/parser/tables/consts.d.ts.map +1 -0
  267. package/dist/cjs/types/parser/tables/dimStyle/consts.d.ts +3 -0
  268. package/dist/cjs/types/parser/tables/dimStyle/consts.d.ts.map +1 -0
  269. package/dist/cjs/types/parser/tables/dimStyle/parser.d.ts +2 -0
  270. package/dist/cjs/types/parser/tables/dimStyle/parser.d.ts.map +1 -0
  271. package/dist/cjs/types/parser/tables/dimStyle/types.d.ts +912 -0
  272. package/dist/cjs/types/parser/tables/dimStyle/types.d.ts.map +1 -0
  273. package/dist/cjs/types/parser/tables/layer/parser.d.ts +2 -0
  274. package/dist/cjs/types/parser/tables/layer/parser.d.ts.map +1 -0
  275. package/dist/cjs/types/parser/tables/layer/types.d.ts +14 -0
  276. package/dist/cjs/types/parser/tables/layer/types.d.ts.map +1 -0
  277. package/dist/cjs/types/parser/tables/ltype/consts.d.ts.map +1 -0
  278. package/dist/cjs/types/parser/tables/ltype/parser.d.ts +2 -0
  279. package/dist/cjs/types/parser/tables/ltype/parser.d.ts.map +1 -0
  280. package/dist/cjs/types/parser/tables/ltype/types.d.ts +22 -0
  281. package/dist/cjs/types/parser/tables/ltype/types.d.ts.map +1 -0
  282. package/dist/cjs/types/parser/tables/parser.d.ts +3 -0
  283. package/dist/cjs/types/parser/tables/parser.d.ts.map +1 -0
  284. package/dist/cjs/types/parser/tables/shared.d.ts +3 -0
  285. package/dist/cjs/types/parser/tables/shared.d.ts.map +1 -0
  286. package/dist/cjs/types/parser/tables/style/parser.d.ts +2 -0
  287. package/dist/cjs/types/parser/tables/style/parser.d.ts.map +1 -0
  288. package/dist/cjs/types/parser/tables/style/types.d.ts +15 -0
  289. package/dist/cjs/types/parser/tables/style/types.d.ts.map +1 -0
  290. package/dist/cjs/types/parser/tables/types.d.ts +14 -0
  291. package/dist/cjs/types/parser/tables/types.d.ts.map +1 -0
  292. package/dist/cjs/types/parser/tables/ucs/parser.d.ts +4 -0
  293. package/dist/cjs/types/parser/tables/ucs/parser.d.ts.map +1 -0
  294. package/dist/cjs/types/parser/tables/ucs/types.d.ts +127 -0
  295. package/dist/cjs/types/parser/tables/ucs/types.d.ts.map +1 -0
  296. package/dist/cjs/types/parser/tables/view/consts.d.ts +4 -0
  297. package/dist/cjs/types/parser/tables/view/consts.d.ts.map +1 -0
  298. package/dist/cjs/types/parser/tables/view/parser.d.ts +4 -0
  299. package/dist/cjs/types/parser/tables/view/parser.d.ts.map +1 -0
  300. package/dist/cjs/types/parser/tables/view/types.d.ts +140 -0
  301. package/dist/cjs/types/parser/tables/view/types.d.ts.map +1 -0
  302. package/dist/cjs/types/parser/tables/vport/parser.d.ts +2 -0
  303. package/dist/cjs/types/parser/tables/vport/parser.d.ts.map +1 -0
  304. package/dist/cjs/types/parser/tables/vport/types.d.ts +44 -0
  305. package/dist/cjs/types/parser/tables/vport/types.d.ts.map +1 -0
  306. package/dist/cjs/types/parser/thumbnailImage/parser.d.ts +6 -0
  307. package/dist/cjs/types/parser/thumbnailImage/parser.d.ts.map +1 -0
  308. package/dist/cjs/types/parser/types.d.ts +35 -0
  309. package/dist/cjs/types/parser/types.d.ts.map +1 -0
  310. package/dist/cjs/types/stream-parser/DxfStreamParser.d.ts +44 -0
  311. package/dist/cjs/types/stream-parser/DxfStreamParser.d.ts.map +1 -0
  312. package/dist/cjs/types/stream-parser/streamShared/parseData.d.ts +20 -0
  313. package/dist/cjs/types/stream-parser/streamShared/parseData.d.ts.map +1 -0
  314. package/dist/cjs/types/types/color.d.ts +4 -0
  315. package/dist/cjs/types/types/color.d.ts.map +1 -0
  316. package/dist/cjs/types/types/dxfHeader.d.ts +17 -0
  317. package/dist/cjs/types/types/dxfHeader.d.ts.map +1 -0
  318. package/dist/cjs/types/types/shared.d.ts +22 -0
  319. package/dist/cjs/types/types/shared.d.ts.map +1 -0
  320. package/dist/cjs/types/utlis.d.ts +18 -0
  321. package/dist/cjs/types/utlis.d.ts.map +1 -0
  322. package/dist/esm/bundle.mjs +3 -0
  323. package/dist/esm/types/consts/block.d.ts +11 -0
  324. package/dist/esm/types/consts/block.d.ts.map +1 -0
  325. package/dist/esm/types/consts/color.d.ts +6 -0
  326. package/dist/esm/types/consts/color.d.ts.map +1 -0
  327. package/dist/esm/types/consts/config.d.ts +3 -0
  328. package/dist/esm/types/consts/config.d.ts.map +1 -0
  329. package/dist/esm/types/consts/dimension.d.ts +166 -0
  330. package/dist/esm/types/consts/dimension.d.ts.map +1 -0
  331. package/dist/esm/types/consts/hatch.d.ts +45 -0
  332. package/dist/esm/types/consts/hatch.d.ts.map +1 -0
  333. package/dist/esm/types/consts/header.d.ts +10 -0
  334. package/dist/esm/types/consts/header.d.ts.map +1 -0
  335. package/dist/esm/types/consts/lineweight.d.ts +6 -0
  336. package/dist/esm/types/consts/lineweight.d.ts.map +1 -0
  337. package/dist/esm/types/consts/measurement.d.ts +5 -0
  338. package/dist/esm/types/consts/measurement.d.ts.map +1 -0
  339. package/dist/esm/types/consts/obscuredLineTypes.d.ts +22 -0
  340. package/dist/esm/types/consts/obscuredLineTypes.d.ts.map +1 -0
  341. package/dist/esm/types/consts/plotStyleType.d.ts +14 -0
  342. package/dist/esm/types/consts/plotStyleType.d.ts.map +1 -0
  343. package/dist/esm/types/consts/viewport.d.ts +58 -0
  344. package/dist/esm/types/consts/viewport.d.ts.map +1 -0
  345. package/dist/esm/types/debug.d.ts +4 -0
  346. package/dist/esm/types/debug.d.ts.map +1 -0
  347. package/dist/esm/types/index.d.ts +174 -0
  348. package/dist/esm/types/index.d.ts.map +1 -0
  349. package/dist/esm/types/parser/AutoCadColorIndex.d.ts +9 -0
  350. package/dist/esm/types/parser/AutoCadColorIndex.d.ts.map +1 -0
  351. package/dist/esm/types/parser/DxfArrayScanner.d.ts +49 -0
  352. package/dist/esm/types/parser/DxfArrayScanner.d.ts.map +1 -0
  353. package/dist/esm/types/parser/DxfParser.d.ts +29 -0
  354. package/dist/esm/types/parser/DxfParser.d.ts.map +1 -0
  355. package/dist/esm/types/parser/ParseHelpers.d.ts +8 -0
  356. package/dist/esm/types/parser/ParseHelpers.d.ts.map +1 -0
  357. package/dist/esm/types/parser/blocks/parser.d.ts +4 -0
  358. package/dist/esm/types/parser/blocks/parser.d.ts.map +1 -0
  359. package/dist/esm/types/parser/blocks/types.d.ts +15 -0
  360. package/dist/esm/types/parser/blocks/types.d.ts.map +1 -0
  361. package/dist/esm/types/parser/classes/consts.d.ts +18 -0
  362. package/dist/esm/types/parser/classes/consts.d.ts.map +1 -0
  363. package/dist/esm/types/parser/classes/parser.d.ts +6 -0
  364. package/dist/esm/types/parser/classes/parser.d.ts.map +1 -0
  365. package/dist/esm/types/parser/classes/types.d.ts +60 -0
  366. package/dist/esm/types/parser/classes/types.d.ts.map +1 -0
  367. package/dist/esm/types/parser/entities/arc/parser.d.ts +7 -0
  368. package/dist/esm/types/parser/entities/arc/parser.d.ts.map +1 -0
  369. package/dist/esm/types/parser/entities/arc/types.d.ts +13 -0
  370. package/dist/esm/types/parser/entities/arc/types.d.ts.map +1 -0
  371. package/dist/esm/types/parser/entities/arc_dimension/consts.d.ts +13 -0
  372. package/dist/esm/types/parser/entities/arc_dimension/consts.d.ts.map +1 -0
  373. package/dist/esm/types/parser/entities/arc_dimension/parser.d.ts +9 -0
  374. package/dist/esm/types/parser/entities/arc_dimension/parser.d.ts.map +1 -0
  375. package/dist/esm/types/parser/entities/arc_dimension/types.d.ts +99 -0
  376. package/dist/esm/types/parser/entities/arc_dimension/types.d.ts.map +1 -0
  377. package/dist/esm/types/parser/entities/attdef/consts.d.ts +12 -0
  378. package/dist/esm/types/parser/entities/attdef/consts.d.ts.map +1 -0
  379. package/dist/esm/types/parser/entities/attdef/parser.d.ts +8 -0
  380. package/dist/esm/types/parser/entities/attdef/parser.d.ts.map +1 -0
  381. package/dist/esm/types/parser/entities/attdef/types.d.ts +18 -0
  382. package/dist/esm/types/parser/entities/attdef/types.d.ts.map +1 -0
  383. package/dist/esm/types/parser/entities/attribute/parser.d.ts +8 -0
  384. package/dist/esm/types/parser/entities/attribute/parser.d.ts.map +1 -0
  385. package/dist/esm/types/parser/entities/attribute/types.d.ts +31 -0
  386. package/dist/esm/types/parser/entities/attribute/types.d.ts.map +1 -0
  387. package/dist/esm/types/parser/entities/body/parser.d.ts +8 -0
  388. package/dist/esm/types/parser/entities/body/parser.d.ts.map +1 -0
  389. package/dist/esm/types/parser/entities/body/types.d.ts +10 -0
  390. package/dist/esm/types/parser/entities/body/types.d.ts.map +1 -0
  391. package/dist/esm/types/parser/entities/circle/parser.d.ts +8 -0
  392. package/dist/esm/types/parser/entities/circle/parser.d.ts.map +1 -0
  393. package/dist/esm/types/parser/entities/circle/types.d.ts +11 -0
  394. package/dist/esm/types/parser/entities/circle/types.d.ts.map +1 -0
  395. package/dist/esm/types/parser/entities/consts.d.ts +5 -0
  396. package/dist/esm/types/parser/entities/consts.d.ts.map +1 -0
  397. package/dist/esm/types/parser/entities/dimension/parser.d.ts +14 -0
  398. package/dist/esm/types/parser/entities/dimension/parser.d.ts.map +1 -0
  399. package/dist/esm/types/parser/entities/dimension/types.d.ts +202 -0
  400. package/dist/esm/types/parser/entities/dimension/types.d.ts.map +1 -0
  401. package/dist/esm/types/parser/entities/ellipse/parser.d.ts +8 -0
  402. package/dist/esm/types/parser/entities/ellipse/parser.d.ts.map +1 -0
  403. package/dist/esm/types/parser/entities/ellipse/types.d.ts +13 -0
  404. package/dist/esm/types/parser/entities/ellipse/types.d.ts.map +1 -0
  405. package/dist/esm/types/parser/entities/face/consts.d.ts +7 -0
  406. package/dist/esm/types/parser/entities/face/consts.d.ts.map +1 -0
  407. package/dist/esm/types/parser/entities/face/parser.d.ts +8 -0
  408. package/dist/esm/types/parser/entities/face/parser.d.ts.map +1 -0
  409. package/dist/esm/types/parser/entities/face/types.d.ts +8 -0
  410. package/dist/esm/types/parser/entities/face/types.d.ts.map +1 -0
  411. package/dist/esm/types/parser/entities/hatch/boundaryPathData/edge.d.ts +7 -0
  412. package/dist/esm/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +1 -0
  413. package/dist/esm/types/parser/entities/hatch/boundaryPathData/parser.d.ts +5 -0
  414. package/dist/esm/types/parser/entities/hatch/boundaryPathData/parser.d.ts.map +1 -0
  415. package/dist/esm/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +3 -0
  416. package/dist/esm/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +1 -0
  417. package/dist/esm/types/parser/entities/hatch/boundaryPathData/shared.d.ts +3 -0
  418. package/dist/esm/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +1 -0
  419. package/dist/esm/types/parser/entities/hatch/parser.d.ts +8 -0
  420. package/dist/esm/types/parser/entities/hatch/parser.d.ts.map +1 -0
  421. package/dist/esm/types/parser/entities/hatch/patternData.d.ts +3 -0
  422. package/dist/esm/types/parser/entities/hatch/patternData.d.ts.map +1 -0
  423. package/dist/esm/types/parser/entities/hatch/types/boundaryPath.d.ts +60 -0
  424. package/dist/esm/types/parser/entities/hatch/types/boundaryPath.d.ts.map +1 -0
  425. package/dist/esm/types/parser/entities/hatch/types/definitionLine.d.ts +9 -0
  426. package/dist/esm/types/parser/entities/hatch/types/definitionLine.d.ts.map +1 -0
  427. package/dist/esm/types/parser/entities/hatch/types/hatch.d.ts +39 -0
  428. package/dist/esm/types/parser/entities/hatch/types/hatch.d.ts.map +1 -0
  429. package/dist/esm/types/parser/entities/image/consts.d.ts +15 -0
  430. package/dist/esm/types/parser/entities/image/consts.d.ts.map +1 -0
  431. package/dist/esm/types/parser/entities/image/parser.d.ts +8 -0
  432. package/dist/esm/types/parser/entities/image/parser.d.ts.map +1 -0
  433. package/dist/esm/types/parser/entities/image/types.d.ts +55 -0
  434. package/dist/esm/types/parser/entities/image/types.d.ts.map +1 -0
  435. package/dist/esm/types/parser/entities/insert/parser.d.ts +8 -0
  436. package/dist/esm/types/parser/entities/insert/parser.d.ts.map +1 -0
  437. package/dist/esm/types/parser/entities/insert/types.d.ts +19 -0
  438. package/dist/esm/types/parser/entities/insert/types.d.ts.map +1 -0
  439. package/dist/esm/types/parser/entities/leader/consts.d.ts +7 -0
  440. package/dist/esm/types/parser/entities/leader/consts.d.ts.map +1 -0
  441. package/dist/esm/types/parser/entities/leader/parser.d.ts +8 -0
  442. package/dist/esm/types/parser/entities/leader/parser.d.ts.map +1 -0
  443. package/dist/esm/types/parser/entities/leader/types.d.ts +24 -0
  444. package/dist/esm/types/parser/entities/leader/types.d.ts.map +1 -0
  445. package/dist/esm/types/parser/entities/light/consts.d.ts +11 -0
  446. package/dist/esm/types/parser/entities/light/consts.d.ts.map +1 -0
  447. package/dist/esm/types/parser/entities/light/parser.d.ts +10 -0
  448. package/dist/esm/types/parser/entities/light/parser.d.ts.map +1 -0
  449. package/dist/esm/types/parser/entities/light/types.d.ts +69 -0
  450. package/dist/esm/types/parser/entities/light/types.d.ts.map +1 -0
  451. package/dist/esm/types/parser/entities/line/parser.d.ts +8 -0
  452. package/dist/esm/types/parser/entities/line/parser.d.ts.map +1 -0
  453. package/dist/esm/types/parser/entities/line/types.d.ts +11 -0
  454. package/dist/esm/types/parser/entities/line/types.d.ts.map +1 -0
  455. package/dist/esm/types/parser/entities/lwpolyline/consts.d.ts +5 -0
  456. package/dist/esm/types/parser/entities/lwpolyline/consts.d.ts.map +1 -0
  457. package/dist/esm/types/parser/entities/lwpolyline/parser.d.ts +7 -0
  458. package/dist/esm/types/parser/entities/lwpolyline/parser.d.ts.map +1 -0
  459. package/dist/esm/types/parser/entities/lwpolyline/types.d.ts +20 -0
  460. package/dist/esm/types/parser/entities/lwpolyline/types.d.ts.map +1 -0
  461. package/dist/esm/types/parser/entities/mesh/parser.d.ts +8 -0
  462. package/dist/esm/types/parser/entities/mesh/parser.d.ts.map +1 -0
  463. package/dist/esm/types/parser/entities/mesh/types.d.ts +23 -0
  464. package/dist/esm/types/parser/entities/mesh/types.d.ts.map +1 -0
  465. package/dist/esm/types/parser/entities/mline/consts.d.ts +12 -0
  466. package/dist/esm/types/parser/entities/mline/consts.d.ts.map +1 -0
  467. package/dist/esm/types/parser/entities/mline/parser.d.ts +12 -0
  468. package/dist/esm/types/parser/entities/mline/parser.d.ts.map +1 -0
  469. package/dist/esm/types/parser/entities/mline/types.d.ts +151 -0
  470. package/dist/esm/types/parser/entities/mline/types.d.ts.map +1 -0
  471. package/dist/esm/types/parser/entities/mtext/consts.d.ts +6 -0
  472. package/dist/esm/types/parser/entities/mtext/consts.d.ts.map +1 -0
  473. package/dist/esm/types/parser/entities/mtext/parser.d.ts +10 -0
  474. package/dist/esm/types/parser/entities/mtext/parser.d.ts.map +1 -0
  475. package/dist/esm/types/parser/entities/mtext/types.d.ts +34 -0
  476. package/dist/esm/types/parser/entities/mtext/types.d.ts.map +1 -0
  477. package/dist/esm/types/parser/entities/multileader/parser.d.ts +8 -0
  478. package/dist/esm/types/parser/entities/multileader/parser.d.ts.map +1 -0
  479. package/dist/esm/types/parser/entities/multileader/types.d.ts +35 -0
  480. package/dist/esm/types/parser/entities/multileader/types.d.ts.map +1 -0
  481. package/dist/esm/types/parser/entities/parser.d.ts +8 -0
  482. package/dist/esm/types/parser/entities/parser.d.ts.map +1 -0
  483. package/dist/esm/types/parser/entities/point/parser.d.ts +7 -0
  484. package/dist/esm/types/parser/entities/point/parser.d.ts.map +1 -0
  485. package/dist/esm/types/parser/entities/point/types.d.ts +10 -0
  486. package/dist/esm/types/parser/entities/point/types.d.ts.map +1 -0
  487. package/dist/esm/types/parser/entities/polyline/consts.d.ts +17 -0
  488. package/dist/esm/types/parser/entities/polyline/consts.d.ts.map +1 -0
  489. package/dist/esm/types/parser/entities/polyline/parser.d.ts +7 -0
  490. package/dist/esm/types/parser/entities/polyline/parser.d.ts.map +1 -0
  491. package/dist/esm/types/parser/entities/polyline/types.d.ts +20 -0
  492. package/dist/esm/types/parser/entities/polyline/types.d.ts.map +1 -0
  493. package/dist/esm/types/parser/entities/ray/parser.d.ts +8 -0
  494. package/dist/esm/types/parser/entities/ray/parser.d.ts.map +1 -0
  495. package/dist/esm/types/parser/entities/ray/types.d.ts +11 -0
  496. package/dist/esm/types/parser/entities/ray/types.d.ts.map +1 -0
  497. package/dist/esm/types/parser/entities/region/parser.d.ts +8 -0
  498. package/dist/esm/types/parser/entities/region/parser.d.ts.map +1 -0
  499. package/dist/esm/types/parser/entities/region/types.d.ts +10 -0
  500. package/dist/esm/types/parser/entities/region/types.d.ts.map +1 -0
  501. package/dist/esm/types/parser/entities/section/parser.d.ts +7 -0
  502. package/dist/esm/types/parser/entities/section/parser.d.ts.map +1 -0
  503. package/dist/esm/types/parser/entities/section/types.d.ts +20 -0
  504. package/dist/esm/types/parser/entities/section/types.d.ts.map +1 -0
  505. package/dist/esm/types/parser/entities/shared.d.ts +82 -0
  506. package/dist/esm/types/parser/entities/shared.d.ts.map +1 -0
  507. package/dist/esm/types/parser/entities/solid/parser.d.ts +8 -0
  508. package/dist/esm/types/parser/entities/solid/parser.d.ts.map +1 -0
  509. package/dist/esm/types/parser/entities/solid/types.d.ts +10 -0
  510. package/dist/esm/types/parser/entities/solid/types.d.ts.map +1 -0
  511. package/dist/esm/types/parser/entities/solid3d/parser.d.ts +8 -0
  512. package/dist/esm/types/parser/entities/solid3d/parser.d.ts.map +1 -0
  513. package/dist/esm/types/parser/entities/solid3d/types.d.ts +12 -0
  514. package/dist/esm/types/parser/entities/solid3d/types.d.ts.map +1 -0
  515. package/dist/esm/types/parser/entities/spline/consts.d.ts +9 -0
  516. package/dist/esm/types/parser/entities/spline/consts.d.ts.map +1 -0
  517. package/dist/esm/types/parser/entities/spline/parser.d.ts +8 -0
  518. package/dist/esm/types/parser/entities/spline/parser.d.ts.map +1 -0
  519. package/dist/esm/types/parser/entities/spline/types.d.ts +22 -0
  520. package/dist/esm/types/parser/entities/spline/types.d.ts.map +1 -0
  521. package/dist/esm/types/parser/entities/sun/parser.d.ts +10 -0
  522. package/dist/esm/types/parser/entities/sun/parser.d.ts.map +1 -0
  523. package/dist/esm/types/parser/entities/sun/types.d.ts +80 -0
  524. package/dist/esm/types/parser/entities/sun/types.d.ts.map +1 -0
  525. package/dist/esm/types/parser/entities/text/consts.d.ts +20 -0
  526. package/dist/esm/types/parser/entities/text/consts.d.ts.map +1 -0
  527. package/dist/esm/types/parser/entities/text/parser.d.ts +26 -0
  528. package/dist/esm/types/parser/entities/text/parser.d.ts.map +1 -0
  529. package/dist/esm/types/parser/entities/text/types.d.ts +21 -0
  530. package/dist/esm/types/parser/entities/text/types.d.ts.map +1 -0
  531. package/dist/esm/types/parser/entities/tolerance/parser.d.ts +8 -0
  532. package/dist/esm/types/parser/entities/tolerance/parser.d.ts.map +1 -0
  533. package/dist/esm/types/parser/entities/tolerance/types.d.ts +17 -0
  534. package/dist/esm/types/parser/entities/tolerance/types.d.ts.map +1 -0
  535. package/dist/esm/types/parser/entities/vertex/consts.d.ts +11 -0
  536. package/dist/esm/types/parser/entities/vertex/consts.d.ts.map +1 -0
  537. package/dist/esm/types/parser/entities/vertex/parser.d.ts +8 -0
  538. package/dist/esm/types/parser/entities/vertex/parser.d.ts.map +1 -0
  539. package/dist/esm/types/parser/entities/vertex/types.d.ts +17 -0
  540. package/dist/esm/types/parser/entities/vertex/types.d.ts.map +1 -0
  541. package/dist/esm/types/parser/entities/viewport/parser.d.ts +7 -0
  542. package/dist/esm/types/parser/entities/viewport/parser.d.ts.map +1 -0
  543. package/dist/esm/types/parser/entities/viewport/types.d.ts +187 -0
  544. package/dist/esm/types/parser/entities/viewport/types.d.ts.map +1 -0
  545. package/dist/esm/types/parser/entities/wipeout/consts.d.ts +7 -0
  546. package/dist/esm/types/parser/entities/wipeout/consts.d.ts.map +1 -0
  547. package/dist/esm/types/parser/entities/wipeout/parser.d.ts +8 -0
  548. package/dist/esm/types/parser/entities/wipeout/parser.d.ts.map +1 -0
  549. package/dist/esm/types/parser/entities/wipeout/types.d.ts +38 -0
  550. package/dist/esm/types/parser/entities/wipeout/types.d.ts.map +1 -0
  551. package/dist/esm/types/parser/entities/xline/parser.d.ts +8 -0
  552. package/dist/esm/types/parser/entities/xline/parser.d.ts.map +1 -0
  553. package/dist/esm/types/parser/entities/xline/types.d.ts +9 -0
  554. package/dist/esm/types/parser/entities/xline/types.d.ts.map +1 -0
  555. package/dist/esm/types/parser/getAcadColor.d.ts +8 -0
  556. package/dist/esm/types/parser/getAcadColor.d.ts.map +1 -0
  557. package/dist/esm/types/parser/header/parser.d.ts +3 -0
  558. package/dist/esm/types/parser/header/parser.d.ts.map +1 -0
  559. package/dist/esm/types/parser/objects/consts.d.ts +15 -0
  560. package/dist/esm/types/parser/objects/consts.d.ts.map +1 -0
  561. package/dist/esm/types/parser/objects/dictionary/parser.d.ts +3 -0
  562. package/dist/esm/types/parser/objects/dictionary/parser.d.ts.map +1 -0
  563. package/dist/esm/types/parser/objects/dictionary/types.d.ts +13 -0
  564. package/dist/esm/types/parser/objects/dictionary/types.d.ts.map +1 -0
  565. package/dist/esm/types/parser/objects/layout/consts.d.ts +5 -0
  566. package/dist/esm/types/parser/objects/layout/consts.d.ts.map +1 -0
  567. package/dist/esm/types/parser/objects/layout/parser.d.ts +3 -0
  568. package/dist/esm/types/parser/objects/layout/parser.d.ts.map +1 -0
  569. package/dist/esm/types/parser/objects/layout/types.d.ts +25 -0
  570. package/dist/esm/types/parser/objects/layout/types.d.ts.map +1 -0
  571. package/dist/esm/types/parser/objects/parser.d.ts +5 -0
  572. package/dist/esm/types/parser/objects/parser.d.ts.map +1 -0
  573. package/dist/esm/types/parser/objects/plotSettings/consts.d.ts +28 -0
  574. package/dist/esm/types/parser/objects/plotSettings/consts.d.ts.map +1 -0
  575. package/dist/esm/types/parser/objects/plotSettings/parser.d.ts +3 -0
  576. package/dist/esm/types/parser/objects/plotSettings/parser.d.ts.map +1 -0
  577. package/dist/esm/types/parser/objects/plotSettings/types.d.ts +37 -0
  578. package/dist/esm/types/parser/objects/plotSettings/types.d.ts.map +1 -0
  579. package/dist/esm/types/parser/objects/shared.d.ts +3 -0
  580. package/dist/esm/types/parser/objects/shared.d.ts.map +1 -0
  581. package/dist/esm/types/parser/objects/spatial_filter/parser.d.ts +3 -0
  582. package/dist/esm/types/parser/objects/spatial_filter/parser.d.ts.map +1 -0
  583. package/dist/esm/types/parser/objects/spatial_filter/types.d.ts +39 -0
  584. package/dist/esm/types/parser/objects/spatial_filter/types.d.ts.map +1 -0
  585. package/dist/esm/types/parser/objects/types.d.ts +29 -0
  586. package/dist/esm/types/parser/objects/types.d.ts.map +1 -0
  587. package/dist/esm/types/parser/objects/xrecord/parser.d.ts +3 -0
  588. package/dist/esm/types/parser/objects/xrecord/parser.d.ts.map +1 -0
  589. package/dist/esm/types/parser/objects/xrecord/types.d.ts +16 -0
  590. package/dist/esm/types/parser/objects/xrecord/types.d.ts.map +1 -0
  591. package/dist/esm/types/parser/shared/ensureHandle.d.ts +2 -0
  592. package/dist/esm/types/parser/shared/ensureHandle.d.ts.map +1 -0
  593. package/dist/esm/types/parser/shared/extensions/parser.d.ts +4 -0
  594. package/dist/esm/types/parser/shared/extensions/parser.d.ts.map +1 -0
  595. package/dist/esm/types/parser/shared/isMatched.d.ts +7 -0
  596. package/dist/esm/types/parser/shared/isMatched.d.ts.map +1 -0
  597. package/dist/esm/types/parser/shared/parsePoint.d.ts +8 -0
  598. package/dist/esm/types/parser/shared/parsePoint.d.ts.map +1 -0
  599. package/dist/esm/types/parser/shared/parserGenerator.d.ts +50 -0
  600. package/dist/esm/types/parser/shared/parserGenerator.d.ts.map +1 -0
  601. package/dist/esm/types/parser/shared/xdata/parser.d.ts +6 -0
  602. package/dist/esm/types/parser/shared/xdata/parser.d.ts.map +1 -0
  603. package/dist/esm/types/parser/shared/xdata/types.d.ts +16 -0
  604. package/dist/esm/types/parser/shared/xdata/types.d.ts.map +1 -0
  605. package/dist/esm/types/parser/tables/appId/parser.d.ts +4 -0
  606. package/dist/esm/types/parser/tables/appId/parser.d.ts.map +1 -0
  607. package/dist/esm/types/parser/tables/appId/types.d.ts +20 -0
  608. package/dist/esm/types/parser/tables/appId/types.d.ts.map +1 -0
  609. package/dist/esm/types/parser/tables/blockRecord/parser.d.ts +2 -0
  610. package/dist/esm/types/parser/tables/blockRecord/parser.d.ts.map +1 -0
  611. package/dist/esm/types/parser/tables/blockRecord/types.d.ts +11 -0
  612. package/dist/esm/types/parser/tables/blockRecord/types.d.ts.map +1 -0
  613. package/dist/esm/types/parser/tables/consts.d.ts +38 -0
  614. package/dist/esm/types/parser/tables/consts.d.ts.map +1 -0
  615. package/dist/esm/types/parser/tables/dimStyle/consts.d.ts +3 -0
  616. package/dist/esm/types/parser/tables/dimStyle/consts.d.ts.map +1 -0
  617. package/dist/esm/types/parser/tables/dimStyle/parser.d.ts +2 -0
  618. package/dist/esm/types/parser/tables/dimStyle/parser.d.ts.map +1 -0
  619. package/dist/esm/types/parser/tables/dimStyle/types.d.ts +912 -0
  620. package/dist/esm/types/parser/tables/dimStyle/types.d.ts.map +1 -0
  621. package/dist/esm/types/parser/tables/layer/parser.d.ts +2 -0
  622. package/dist/esm/types/parser/tables/layer/parser.d.ts.map +1 -0
  623. package/dist/esm/types/parser/tables/layer/types.d.ts +14 -0
  624. package/dist/esm/types/parser/tables/layer/types.d.ts.map +1 -0
  625. package/dist/esm/types/parser/tables/ltype/consts.d.ts +7 -0
  626. package/dist/esm/types/parser/tables/ltype/consts.d.ts.map +1 -0
  627. package/dist/esm/types/parser/tables/ltype/parser.d.ts +2 -0
  628. package/dist/esm/types/parser/tables/ltype/parser.d.ts.map +1 -0
  629. package/dist/esm/types/parser/tables/ltype/types.d.ts +22 -0
  630. package/dist/esm/types/parser/tables/ltype/types.d.ts.map +1 -0
  631. package/dist/esm/types/parser/tables/parser.d.ts +3 -0
  632. package/dist/esm/types/parser/tables/parser.d.ts.map +1 -0
  633. package/dist/esm/types/parser/tables/shared.d.ts +3 -0
  634. package/dist/esm/types/parser/tables/shared.d.ts.map +1 -0
  635. package/dist/esm/types/parser/tables/style/parser.d.ts +2 -0
  636. package/dist/esm/types/parser/tables/style/parser.d.ts.map +1 -0
  637. package/dist/esm/types/parser/tables/style/types.d.ts +15 -0
  638. package/dist/esm/types/parser/tables/style/types.d.ts.map +1 -0
  639. package/dist/esm/types/parser/tables/types.d.ts +14 -0
  640. package/dist/esm/types/parser/tables/types.d.ts.map +1 -0
  641. package/dist/esm/types/parser/tables/ucs/parser.d.ts +4 -0
  642. package/dist/esm/types/parser/tables/ucs/parser.d.ts.map +1 -0
  643. package/dist/esm/types/parser/tables/ucs/types.d.ts +127 -0
  644. package/dist/esm/types/parser/tables/ucs/types.d.ts.map +1 -0
  645. package/dist/esm/types/parser/tables/view/consts.d.ts +4 -0
  646. package/dist/esm/types/parser/tables/view/consts.d.ts.map +1 -0
  647. package/dist/esm/types/parser/tables/view/parser.d.ts +4 -0
  648. package/dist/esm/types/parser/tables/view/parser.d.ts.map +1 -0
  649. package/dist/esm/types/parser/tables/view/types.d.ts +140 -0
  650. package/dist/esm/types/parser/tables/view/types.d.ts.map +1 -0
  651. package/dist/esm/types/parser/tables/vport/parser.d.ts +2 -0
  652. package/dist/esm/types/parser/tables/vport/parser.d.ts.map +1 -0
  653. package/dist/esm/types/parser/tables/vport/types.d.ts +44 -0
  654. package/dist/esm/types/parser/tables/vport/types.d.ts.map +1 -0
  655. package/dist/esm/types/parser/thumbnailImage/parser.d.ts +6 -0
  656. package/dist/esm/types/parser/thumbnailImage/parser.d.ts.map +1 -0
  657. package/dist/esm/types/parser/types.d.ts +35 -0
  658. package/dist/esm/types/parser/types.d.ts.map +1 -0
  659. package/dist/esm/types/stream-parser/DxfStreamParser.d.ts +44 -0
  660. package/dist/esm/types/stream-parser/DxfStreamParser.d.ts.map +1 -0
  661. package/dist/esm/types/stream-parser/streamShared/parseData.d.ts +20 -0
  662. package/dist/esm/types/stream-parser/streamShared/parseData.d.ts.map +1 -0
  663. package/dist/esm/types/types/color.d.ts +4 -0
  664. package/dist/esm/types/types/color.d.ts.map +1 -0
  665. package/dist/esm/types/types/dxfHeader.d.ts +17 -0
  666. package/dist/esm/types/types/dxfHeader.d.ts.map +1 -0
  667. package/dist/esm/types/types/shared.d.ts +22 -0
  668. package/dist/esm/types/types/shared.d.ts.map +1 -0
  669. package/dist/esm/types/utlis.d.ts +18 -0
  670. package/dist/esm/types/utlis.d.ts.map +1 -0
  671. package/package.json +15 -14
  672. package/dist/bundle.cjs +0 -3
  673. package/dist/bundle.mjs +0 -3
  674. package/dist/types/consts/block.d.ts.map +0 -1
  675. package/dist/types/consts/color.d.ts.map +0 -1
  676. package/dist/types/consts/config.d.ts.map +0 -1
  677. package/dist/types/consts/dimension.d.ts.map +0 -1
  678. package/dist/types/consts/hatch.d.ts.map +0 -1
  679. package/dist/types/consts/header.d.ts +0 -10
  680. package/dist/types/consts/header.d.ts.map +0 -1
  681. package/dist/types/consts/index.d.ts +0 -13
  682. package/dist/types/consts/index.d.ts.map +0 -1
  683. package/dist/types/consts/lineweight.d.ts.map +0 -1
  684. package/dist/types/consts/measurement.d.ts.map +0 -1
  685. package/dist/types/consts/obscuredLineTypes.d.ts.map +0 -1
  686. package/dist/types/consts/plotStyleType.d.ts.map +0 -1
  687. package/dist/types/consts/scene.d.ts +0 -3
  688. package/dist/types/consts/scene.d.ts.map +0 -1
  689. package/dist/types/consts/viewport.d.ts +0 -53
  690. package/dist/types/consts/viewport.d.ts.map +0 -1
  691. package/dist/types/index.d.ts +0 -8
  692. package/dist/types/index.d.ts.map +0 -1
  693. package/dist/types/parser/AutoCadColorIndex.d.ts.map +0 -1
  694. package/dist/types/parser/DxfArrayScanner.d.ts.map +0 -1
  695. package/dist/types/parser/DxfParser.d.ts +0 -22
  696. package/dist/types/parser/DxfParser.d.ts.map +0 -1
  697. package/dist/types/parser/ParseHelpers.d.ts +0 -16
  698. package/dist/types/parser/ParseHelpers.d.ts.map +0 -1
  699. package/dist/types/parser/blocks/index.d.ts +0 -5
  700. package/dist/types/parser/blocks/index.d.ts.map +0 -1
  701. package/dist/types/parser/blocks/types.d.ts +0 -15
  702. package/dist/types/parser/blocks/types.d.ts.map +0 -1
  703. package/dist/types/parser/entities/arc/index.d.ts +0 -3
  704. package/dist/types/parser/entities/arc/index.d.ts.map +0 -1
  705. package/dist/types/parser/entities/arc/parser.d.ts +0 -7
  706. package/dist/types/parser/entities/arc/parser.d.ts.map +0 -1
  707. package/dist/types/parser/entities/arc/types.d.ts +0 -13
  708. package/dist/types/parser/entities/arc/types.d.ts.map +0 -1
  709. package/dist/types/parser/entities/arc_dimension/consts.d.ts.map +0 -1
  710. package/dist/types/parser/entities/arc_dimension/index.d.ts +0 -4
  711. package/dist/types/parser/entities/arc_dimension/index.d.ts.map +0 -1
  712. package/dist/types/parser/entities/arc_dimension/parser.d.ts +0 -9
  713. package/dist/types/parser/entities/arc_dimension/parser.d.ts.map +0 -1
  714. package/dist/types/parser/entities/arc_dimension/types.d.ts +0 -99
  715. package/dist/types/parser/entities/arc_dimension/types.d.ts.map +0 -1
  716. package/dist/types/parser/entities/attdef/consts.d.ts.map +0 -1
  717. package/dist/types/parser/entities/attdef/index.d.ts +0 -4
  718. package/dist/types/parser/entities/attdef/index.d.ts.map +0 -1
  719. package/dist/types/parser/entities/attdef/parser.d.ts +0 -8
  720. package/dist/types/parser/entities/attdef/parser.d.ts.map +0 -1
  721. package/dist/types/parser/entities/attdef/types.d.ts +0 -18
  722. package/dist/types/parser/entities/attdef/types.d.ts.map +0 -1
  723. package/dist/types/parser/entities/attribute/index.d.ts +0 -3
  724. package/dist/types/parser/entities/attribute/index.d.ts.map +0 -1
  725. package/dist/types/parser/entities/attribute/parser.d.ts +0 -8
  726. package/dist/types/parser/entities/attribute/parser.d.ts.map +0 -1
  727. package/dist/types/parser/entities/attribute/types.d.ts +0 -31
  728. package/dist/types/parser/entities/attribute/types.d.ts.map +0 -1
  729. package/dist/types/parser/entities/body/index.d.ts +0 -3
  730. package/dist/types/parser/entities/body/index.d.ts.map +0 -1
  731. package/dist/types/parser/entities/body/parser.d.ts +0 -8
  732. package/dist/types/parser/entities/body/parser.d.ts.map +0 -1
  733. package/dist/types/parser/entities/body/types.d.ts +0 -10
  734. package/dist/types/parser/entities/body/types.d.ts.map +0 -1
  735. package/dist/types/parser/entities/circle/index.d.ts +0 -3
  736. package/dist/types/parser/entities/circle/index.d.ts.map +0 -1
  737. package/dist/types/parser/entities/circle/parser.d.ts +0 -8
  738. package/dist/types/parser/entities/circle/parser.d.ts.map +0 -1
  739. package/dist/types/parser/entities/circle/types.d.ts +0 -11
  740. package/dist/types/parser/entities/circle/types.d.ts.map +0 -1
  741. package/dist/types/parser/entities/dimension/index.d.ts +0 -3
  742. package/dist/types/parser/entities/dimension/index.d.ts.map +0 -1
  743. package/dist/types/parser/entities/dimension/parser.d.ts +0 -14
  744. package/dist/types/parser/entities/dimension/parser.d.ts.map +0 -1
  745. package/dist/types/parser/entities/dimension/types.d.ts +0 -202
  746. package/dist/types/parser/entities/dimension/types.d.ts.map +0 -1
  747. package/dist/types/parser/entities/ellipse/index.d.ts +0 -3
  748. package/dist/types/parser/entities/ellipse/index.d.ts.map +0 -1
  749. package/dist/types/parser/entities/ellipse/parser.d.ts +0 -8
  750. package/dist/types/parser/entities/ellipse/parser.d.ts.map +0 -1
  751. package/dist/types/parser/entities/ellipse/types.d.ts +0 -13
  752. package/dist/types/parser/entities/ellipse/types.d.ts.map +0 -1
  753. package/dist/types/parser/entities/face/consts.d.ts.map +0 -1
  754. package/dist/types/parser/entities/face/index.d.ts +0 -4
  755. package/dist/types/parser/entities/face/index.d.ts.map +0 -1
  756. package/dist/types/parser/entities/face/parser.d.ts +0 -8
  757. package/dist/types/parser/entities/face/parser.d.ts.map +0 -1
  758. package/dist/types/parser/entities/face/types.d.ts +0 -8
  759. package/dist/types/parser/entities/face/types.d.ts.map +0 -1
  760. package/dist/types/parser/entities/hatch/boundaryPathData/edge.d.ts +0 -7
  761. package/dist/types/parser/entities/hatch/boundaryPathData/edge.d.ts.map +0 -1
  762. package/dist/types/parser/entities/hatch/boundaryPathData/index.d.ts +0 -5
  763. package/dist/types/parser/entities/hatch/boundaryPathData/index.d.ts.map +0 -1
  764. package/dist/types/parser/entities/hatch/boundaryPathData/polyline.d.ts +0 -3
  765. package/dist/types/parser/entities/hatch/boundaryPathData/polyline.d.ts.map +0 -1
  766. package/dist/types/parser/entities/hatch/boundaryPathData/shared.d.ts +0 -3
  767. package/dist/types/parser/entities/hatch/boundaryPathData/shared.d.ts.map +0 -1
  768. package/dist/types/parser/entities/hatch/index.d.ts +0 -9
  769. package/dist/types/parser/entities/hatch/index.d.ts.map +0 -1
  770. package/dist/types/parser/entities/hatch/patternData.d.ts +0 -3
  771. package/dist/types/parser/entities/hatch/patternData.d.ts.map +0 -1
  772. package/dist/types/parser/entities/hatch/types/boundaryPath.d.ts +0 -60
  773. package/dist/types/parser/entities/hatch/types/boundaryPath.d.ts.map +0 -1
  774. package/dist/types/parser/entities/hatch/types/definitionLine.d.ts +0 -9
  775. package/dist/types/parser/entities/hatch/types/definitionLine.d.ts.map +0 -1
  776. package/dist/types/parser/entities/hatch/types/hatch.d.ts +0 -39
  777. package/dist/types/parser/entities/hatch/types/hatch.d.ts.map +0 -1
  778. package/dist/types/parser/entities/hatch/types/index.d.ts +0 -4
  779. package/dist/types/parser/entities/hatch/types/index.d.ts.map +0 -1
  780. package/dist/types/parser/entities/image/consts.d.ts.map +0 -1
  781. package/dist/types/parser/entities/image/index.d.ts +0 -4
  782. package/dist/types/parser/entities/image/index.d.ts.map +0 -1
  783. package/dist/types/parser/entities/image/parser.d.ts +0 -8
  784. package/dist/types/parser/entities/image/parser.d.ts.map +0 -1
  785. package/dist/types/parser/entities/image/types.d.ts +0 -55
  786. package/dist/types/parser/entities/image/types.d.ts.map +0 -1
  787. package/dist/types/parser/entities/index.d.ts +0 -42
  788. package/dist/types/parser/entities/index.d.ts.map +0 -1
  789. package/dist/types/parser/entities/insert/index.d.ts +0 -3
  790. package/dist/types/parser/entities/insert/index.d.ts.map +0 -1
  791. package/dist/types/parser/entities/insert/parser.d.ts +0 -8
  792. package/dist/types/parser/entities/insert/parser.d.ts.map +0 -1
  793. package/dist/types/parser/entities/insert/types.d.ts +0 -19
  794. package/dist/types/parser/entities/insert/types.d.ts.map +0 -1
  795. package/dist/types/parser/entities/leader/consts.d.ts.map +0 -1
  796. package/dist/types/parser/entities/leader/index.d.ts +0 -4
  797. package/dist/types/parser/entities/leader/index.d.ts.map +0 -1
  798. package/dist/types/parser/entities/leader/parser.d.ts +0 -8
  799. package/dist/types/parser/entities/leader/parser.d.ts.map +0 -1
  800. package/dist/types/parser/entities/leader/types.d.ts +0 -24
  801. package/dist/types/parser/entities/leader/types.d.ts.map +0 -1
  802. package/dist/types/parser/entities/line/index.d.ts +0 -3
  803. package/dist/types/parser/entities/line/index.d.ts.map +0 -1
  804. package/dist/types/parser/entities/line/parser.d.ts +0 -8
  805. package/dist/types/parser/entities/line/parser.d.ts.map +0 -1
  806. package/dist/types/parser/entities/line/types.d.ts +0 -11
  807. package/dist/types/parser/entities/line/types.d.ts.map +0 -1
  808. package/dist/types/parser/entities/lwpolyline/consts.d.ts.map +0 -1
  809. package/dist/types/parser/entities/lwpolyline/index.d.ts +0 -4
  810. package/dist/types/parser/entities/lwpolyline/index.d.ts.map +0 -1
  811. package/dist/types/parser/entities/lwpolyline/parser.d.ts +0 -7
  812. package/dist/types/parser/entities/lwpolyline/parser.d.ts.map +0 -1
  813. package/dist/types/parser/entities/lwpolyline/types.d.ts +0 -20
  814. package/dist/types/parser/entities/lwpolyline/types.d.ts.map +0 -1
  815. package/dist/types/parser/entities/mesh/index.d.ts +0 -3
  816. package/dist/types/parser/entities/mesh/index.d.ts.map +0 -1
  817. package/dist/types/parser/entities/mesh/parser.d.ts +0 -8
  818. package/dist/types/parser/entities/mesh/parser.d.ts.map +0 -1
  819. package/dist/types/parser/entities/mesh/types.d.ts +0 -23
  820. package/dist/types/parser/entities/mesh/types.d.ts.map +0 -1
  821. package/dist/types/parser/entities/mline/consts.d.ts.map +0 -1
  822. package/dist/types/parser/entities/mline/index.d.ts +0 -4
  823. package/dist/types/parser/entities/mline/index.d.ts.map +0 -1
  824. package/dist/types/parser/entities/mline/parser.d.ts +0 -12
  825. package/dist/types/parser/entities/mline/parser.d.ts.map +0 -1
  826. package/dist/types/parser/entities/mline/types.d.ts +0 -151
  827. package/dist/types/parser/entities/mline/types.d.ts.map +0 -1
  828. package/dist/types/parser/entities/mtext/consts.d.ts.map +0 -1
  829. package/dist/types/parser/entities/mtext/index.d.ts +0 -4
  830. package/dist/types/parser/entities/mtext/index.d.ts.map +0 -1
  831. package/dist/types/parser/entities/mtext/parser.d.ts +0 -10
  832. package/dist/types/parser/entities/mtext/parser.d.ts.map +0 -1
  833. package/dist/types/parser/entities/mtext/types.d.ts +0 -34
  834. package/dist/types/parser/entities/mtext/types.d.ts.map +0 -1
  835. package/dist/types/parser/entities/multileader/index.d.ts +0 -3
  836. package/dist/types/parser/entities/multileader/index.d.ts.map +0 -1
  837. package/dist/types/parser/entities/multileader/parser.d.ts +0 -8
  838. package/dist/types/parser/entities/multileader/parser.d.ts.map +0 -1
  839. package/dist/types/parser/entities/multileader/types.d.ts +0 -35
  840. package/dist/types/parser/entities/multileader/types.d.ts.map +0 -1
  841. package/dist/types/parser/entities/point/index.d.ts +0 -3
  842. package/dist/types/parser/entities/point/index.d.ts.map +0 -1
  843. package/dist/types/parser/entities/point/parser.d.ts +0 -7
  844. package/dist/types/parser/entities/point/parser.d.ts.map +0 -1
  845. package/dist/types/parser/entities/point/types.d.ts +0 -10
  846. package/dist/types/parser/entities/point/types.d.ts.map +0 -1
  847. package/dist/types/parser/entities/polyline/consts.d.ts.map +0 -1
  848. package/dist/types/parser/entities/polyline/index.d.ts +0 -4
  849. package/dist/types/parser/entities/polyline/index.d.ts.map +0 -1
  850. package/dist/types/parser/entities/polyline/parser.d.ts +0 -7
  851. package/dist/types/parser/entities/polyline/parser.d.ts.map +0 -1
  852. package/dist/types/parser/entities/polyline/types.d.ts +0 -20
  853. package/dist/types/parser/entities/polyline/types.d.ts.map +0 -1
  854. package/dist/types/parser/entities/ray/index.d.ts +0 -3
  855. package/dist/types/parser/entities/ray/index.d.ts.map +0 -1
  856. package/dist/types/parser/entities/ray/parser.d.ts +0 -8
  857. package/dist/types/parser/entities/ray/parser.d.ts.map +0 -1
  858. package/dist/types/parser/entities/ray/types.d.ts +0 -11
  859. package/dist/types/parser/entities/ray/types.d.ts.map +0 -1
  860. package/dist/types/parser/entities/region/index.d.ts +0 -3
  861. package/dist/types/parser/entities/region/index.d.ts.map +0 -1
  862. package/dist/types/parser/entities/region/parser.d.ts +0 -8
  863. package/dist/types/parser/entities/region/parser.d.ts.map +0 -1
  864. package/dist/types/parser/entities/region/types.d.ts +0 -10
  865. package/dist/types/parser/entities/region/types.d.ts.map +0 -1
  866. package/dist/types/parser/entities/section/index.d.ts +0 -3
  867. package/dist/types/parser/entities/section/index.d.ts.map +0 -1
  868. package/dist/types/parser/entities/section/parser.d.ts +0 -7
  869. package/dist/types/parser/entities/section/parser.d.ts.map +0 -1
  870. package/dist/types/parser/entities/section/types.d.ts +0 -20
  871. package/dist/types/parser/entities/section/types.d.ts.map +0 -1
  872. package/dist/types/parser/entities/shared.d.ts +0 -82
  873. package/dist/types/parser/entities/shared.d.ts.map +0 -1
  874. package/dist/types/parser/entities/solid/index.d.ts +0 -3
  875. package/dist/types/parser/entities/solid/index.d.ts.map +0 -1
  876. package/dist/types/parser/entities/solid/parser.d.ts +0 -8
  877. package/dist/types/parser/entities/solid/parser.d.ts.map +0 -1
  878. package/dist/types/parser/entities/solid/types.d.ts +0 -10
  879. package/dist/types/parser/entities/solid/types.d.ts.map +0 -1
  880. package/dist/types/parser/entities/solid3d/index.d.ts +0 -3
  881. package/dist/types/parser/entities/solid3d/index.d.ts.map +0 -1
  882. package/dist/types/parser/entities/solid3d/parser.d.ts +0 -8
  883. package/dist/types/parser/entities/solid3d/parser.d.ts.map +0 -1
  884. package/dist/types/parser/entities/solid3d/types.d.ts +0 -12
  885. package/dist/types/parser/entities/solid3d/types.d.ts.map +0 -1
  886. package/dist/types/parser/entities/spline/consts.d.ts.map +0 -1
  887. package/dist/types/parser/entities/spline/index.d.ts +0 -4
  888. package/dist/types/parser/entities/spline/index.d.ts.map +0 -1
  889. package/dist/types/parser/entities/spline/parser.d.ts +0 -8
  890. package/dist/types/parser/entities/spline/parser.d.ts.map +0 -1
  891. package/dist/types/parser/entities/spline/types.d.ts +0 -22
  892. package/dist/types/parser/entities/spline/types.d.ts.map +0 -1
  893. package/dist/types/parser/entities/text/consts.d.ts.map +0 -1
  894. package/dist/types/parser/entities/text/index.d.ts +0 -4
  895. package/dist/types/parser/entities/text/index.d.ts.map +0 -1
  896. package/dist/types/parser/entities/text/parser.d.ts +0 -26
  897. package/dist/types/parser/entities/text/parser.d.ts.map +0 -1
  898. package/dist/types/parser/entities/text/types.d.ts +0 -21
  899. package/dist/types/parser/entities/text/types.d.ts.map +0 -1
  900. package/dist/types/parser/entities/tolerance/index.d.ts +0 -3
  901. package/dist/types/parser/entities/tolerance/index.d.ts.map +0 -1
  902. package/dist/types/parser/entities/tolerance/parser.d.ts +0 -8
  903. package/dist/types/parser/entities/tolerance/parser.d.ts.map +0 -1
  904. package/dist/types/parser/entities/tolerance/types.d.ts +0 -17
  905. package/dist/types/parser/entities/tolerance/types.d.ts.map +0 -1
  906. package/dist/types/parser/entities/vertex/consts.d.ts.map +0 -1
  907. package/dist/types/parser/entities/vertex/index.d.ts +0 -4
  908. package/dist/types/parser/entities/vertex/index.d.ts.map +0 -1
  909. package/dist/types/parser/entities/vertex/parser.d.ts +0 -8
  910. package/dist/types/parser/entities/vertex/parser.d.ts.map +0 -1
  911. package/dist/types/parser/entities/vertex/types.d.ts +0 -17
  912. package/dist/types/parser/entities/vertex/types.d.ts.map +0 -1
  913. package/dist/types/parser/entities/viewport/index.d.ts +0 -3
  914. package/dist/types/parser/entities/viewport/index.d.ts.map +0 -1
  915. package/dist/types/parser/entities/viewport/parser.d.ts +0 -7
  916. package/dist/types/parser/entities/viewport/parser.d.ts.map +0 -1
  917. package/dist/types/parser/entities/viewport/types.d.ts +0 -187
  918. package/dist/types/parser/entities/viewport/types.d.ts.map +0 -1
  919. package/dist/types/parser/entities/wipeout/consts.d.ts.map +0 -1
  920. package/dist/types/parser/entities/wipeout/index.d.ts +0 -4
  921. package/dist/types/parser/entities/wipeout/index.d.ts.map +0 -1
  922. package/dist/types/parser/entities/wipeout/parser.d.ts +0 -8
  923. package/dist/types/parser/entities/wipeout/parser.d.ts.map +0 -1
  924. package/dist/types/parser/entities/wipeout/types.d.ts +0 -38
  925. package/dist/types/parser/entities/wipeout/types.d.ts.map +0 -1
  926. package/dist/types/parser/entities/xline/index.d.ts +0 -3
  927. package/dist/types/parser/entities/xline/index.d.ts.map +0 -1
  928. package/dist/types/parser/entities/xline/parser.d.ts +0 -8
  929. package/dist/types/parser/entities/xline/parser.d.ts.map +0 -1
  930. package/dist/types/parser/entities/xline/types.d.ts +0 -9
  931. package/dist/types/parser/entities/xline/types.d.ts.map +0 -1
  932. package/dist/types/parser/getAcadColor.d.ts +0 -8
  933. package/dist/types/parser/getAcadColor.d.ts.map +0 -1
  934. package/dist/types/parser/header/index.d.ts +0 -3
  935. package/dist/types/parser/header/index.d.ts.map +0 -1
  936. package/dist/types/parser/index.d.ts +0 -9
  937. package/dist/types/parser/index.d.ts.map +0 -1
  938. package/dist/types/parser/objects/consts.d.ts.map +0 -1
  939. package/dist/types/parser/objects/dictionary/index.d.ts +0 -3
  940. package/dist/types/parser/objects/dictionary/index.d.ts.map +0 -1
  941. package/dist/types/parser/objects/dictionary/parser.d.ts +0 -3
  942. package/dist/types/parser/objects/dictionary/parser.d.ts.map +0 -1
  943. package/dist/types/parser/objects/dictionary/types.d.ts +0 -13
  944. package/dist/types/parser/objects/dictionary/types.d.ts.map +0 -1
  945. package/dist/types/parser/objects/index.d.ts +0 -12
  946. package/dist/types/parser/objects/index.d.ts.map +0 -1
  947. package/dist/types/parser/objects/layout/consts.d.ts.map +0 -1
  948. package/dist/types/parser/objects/layout/index.d.ts +0 -4
  949. package/dist/types/parser/objects/layout/index.d.ts.map +0 -1
  950. package/dist/types/parser/objects/layout/parser.d.ts +0 -3
  951. package/dist/types/parser/objects/layout/parser.d.ts.map +0 -1
  952. package/dist/types/parser/objects/layout/types.d.ts +0 -25
  953. package/dist/types/parser/objects/layout/types.d.ts.map +0 -1
  954. package/dist/types/parser/objects/plotSettings/consts.d.ts.map +0 -1
  955. package/dist/types/parser/objects/plotSettings/index.d.ts +0 -4
  956. package/dist/types/parser/objects/plotSettings/index.d.ts.map +0 -1
  957. package/dist/types/parser/objects/plotSettings/parser.d.ts +0 -3
  958. package/dist/types/parser/objects/plotSettings/parser.d.ts.map +0 -1
  959. package/dist/types/parser/objects/plotSettings/types.d.ts +0 -37
  960. package/dist/types/parser/objects/plotSettings/types.d.ts.map +0 -1
  961. package/dist/types/parser/objects/shared.d.ts +0 -3
  962. package/dist/types/parser/objects/shared.d.ts.map +0 -1
  963. package/dist/types/parser/objects/spatial_filter/index.d.ts +0 -3
  964. package/dist/types/parser/objects/spatial_filter/index.d.ts.map +0 -1
  965. package/dist/types/parser/objects/spatial_filter/parser.d.ts +0 -3
  966. package/dist/types/parser/objects/spatial_filter/parser.d.ts.map +0 -1
  967. package/dist/types/parser/objects/spatial_filter/types.d.ts +0 -39
  968. package/dist/types/parser/objects/spatial_filter/types.d.ts.map +0 -1
  969. package/dist/types/parser/objects/types.d.ts +0 -29
  970. package/dist/types/parser/objects/types.d.ts.map +0 -1
  971. package/dist/types/parser/objects/xrecord/index.d.ts +0 -3
  972. package/dist/types/parser/objects/xrecord/index.d.ts.map +0 -1
  973. package/dist/types/parser/objects/xrecord/parser.d.ts +0 -3
  974. package/dist/types/parser/objects/xrecord/parser.d.ts.map +0 -1
  975. package/dist/types/parser/objects/xrecord/types.d.ts +0 -16
  976. package/dist/types/parser/objects/xrecord/types.d.ts.map +0 -1
  977. package/dist/types/parser/shared/extensions/parser.d.ts +0 -4
  978. package/dist/types/parser/shared/extensions/parser.d.ts.map +0 -1
  979. package/dist/types/parser/shared/index.d.ts +0 -5
  980. package/dist/types/parser/shared/index.d.ts.map +0 -1
  981. package/dist/types/parser/shared/isMatched.d.ts +0 -7
  982. package/dist/types/parser/shared/isMatched.d.ts.map +0 -1
  983. package/dist/types/parser/shared/parsePoint.d.ts +0 -8
  984. package/dist/types/parser/shared/parsePoint.d.ts.map +0 -1
  985. package/dist/types/parser/shared/parserGenerator.d.ts +0 -50
  986. package/dist/types/parser/shared/parserGenerator.d.ts.map +0 -1
  987. package/dist/types/parser/shared/xdata/index.d.ts +0 -4
  988. package/dist/types/parser/shared/xdata/index.d.ts.map +0 -1
  989. package/dist/types/parser/shared/xdata/interpreter.d.ts +0 -21
  990. package/dist/types/parser/shared/xdata/interpreter.d.ts.map +0 -1
  991. package/dist/types/parser/shared/xdata/parser.d.ts +0 -6
  992. package/dist/types/parser/shared/xdata/parser.d.ts.map +0 -1
  993. package/dist/types/parser/shared/xdata/types.d.ts +0 -10
  994. package/dist/types/parser/shared/xdata/types.d.ts.map +0 -1
  995. package/dist/types/parser/tables/blockRecord/index.d.ts +0 -3
  996. package/dist/types/parser/tables/blockRecord/index.d.ts.map +0 -1
  997. package/dist/types/parser/tables/blockRecord/parser.d.ts +0 -2
  998. package/dist/types/parser/tables/blockRecord/parser.d.ts.map +0 -1
  999. package/dist/types/parser/tables/blockRecord/types.d.ts +0 -11
  1000. package/dist/types/parser/tables/blockRecord/types.d.ts.map +0 -1
  1001. package/dist/types/parser/tables/dimStyle/consts.d.ts +0 -3
  1002. package/dist/types/parser/tables/dimStyle/consts.d.ts.map +0 -1
  1003. package/dist/types/parser/tables/dimStyle/index.d.ts +0 -4
  1004. package/dist/types/parser/tables/dimStyle/index.d.ts.map +0 -1
  1005. package/dist/types/parser/tables/dimStyle/parser.d.ts +0 -2
  1006. package/dist/types/parser/tables/dimStyle/parser.d.ts.map +0 -1
  1007. package/dist/types/parser/tables/dimStyle/types.d.ts +0 -912
  1008. package/dist/types/parser/tables/dimStyle/types.d.ts.map +0 -1
  1009. package/dist/types/parser/tables/index.d.ts +0 -9
  1010. package/dist/types/parser/tables/index.d.ts.map +0 -1
  1011. package/dist/types/parser/tables/layer/index.d.ts +0 -3
  1012. package/dist/types/parser/tables/layer/index.d.ts.map +0 -1
  1013. package/dist/types/parser/tables/layer/parser.d.ts +0 -2
  1014. package/dist/types/parser/tables/layer/parser.d.ts.map +0 -1
  1015. package/dist/types/parser/tables/layer/types.d.ts +0 -14
  1016. package/dist/types/parser/tables/layer/types.d.ts.map +0 -1
  1017. package/dist/types/parser/tables/ltype/consts.d.ts.map +0 -1
  1018. package/dist/types/parser/tables/ltype/index.d.ts +0 -4
  1019. package/dist/types/parser/tables/ltype/index.d.ts.map +0 -1
  1020. package/dist/types/parser/tables/ltype/parser.d.ts +0 -2
  1021. package/dist/types/parser/tables/ltype/parser.d.ts.map +0 -1
  1022. package/dist/types/parser/tables/ltype/types.d.ts +0 -22
  1023. package/dist/types/parser/tables/ltype/types.d.ts.map +0 -1
  1024. package/dist/types/parser/tables/parser.d.ts +0 -3
  1025. package/dist/types/parser/tables/parser.d.ts.map +0 -1
  1026. package/dist/types/parser/tables/shared.d.ts +0 -3
  1027. package/dist/types/parser/tables/shared.d.ts.map +0 -1
  1028. package/dist/types/parser/tables/style/index.d.ts +0 -3
  1029. package/dist/types/parser/tables/style/index.d.ts.map +0 -1
  1030. package/dist/types/parser/tables/style/parser.d.ts +0 -2
  1031. package/dist/types/parser/tables/style/parser.d.ts.map +0 -1
  1032. package/dist/types/parser/tables/style/types.d.ts +0 -15
  1033. package/dist/types/parser/tables/style/types.d.ts.map +0 -1
  1034. package/dist/types/parser/tables/types.d.ts +0 -15
  1035. package/dist/types/parser/tables/types.d.ts.map +0 -1
  1036. package/dist/types/parser/tables/vport/index.d.ts +0 -3
  1037. package/dist/types/parser/tables/vport/index.d.ts.map +0 -1
  1038. package/dist/types/parser/tables/vport/parser.d.ts +0 -2
  1039. package/dist/types/parser/tables/vport/parser.d.ts.map +0 -1
  1040. package/dist/types/parser/tables/vport/types.d.ts +0 -44
  1041. package/dist/types/parser/tables/vport/types.d.ts.map +0 -1
  1042. package/dist/types/parser/types.d.ts +0 -23
  1043. package/dist/types/parser/types.d.ts.map +0 -1
  1044. package/dist/types/stream-parser/DxfStreamParser.d.ts +0 -44
  1045. package/dist/types/stream-parser/DxfStreamParser.d.ts.map +0 -1
  1046. package/dist/types/stream-parser/index.d.ts +0 -2
  1047. package/dist/types/stream-parser/index.d.ts.map +0 -1
  1048. package/dist/types/stream-parser/streamShared/parseData.d.ts +0 -20
  1049. package/dist/types/stream-parser/streamShared/parseData.d.ts.map +0 -1
  1050. package/dist/types/types/color.d.ts +0 -4
  1051. package/dist/types/types/color.d.ts.map +0 -1
  1052. package/dist/types/types/dxfHeader.d.ts +0 -17
  1053. package/dist/types/types/dxfHeader.d.ts.map +0 -1
  1054. package/dist/types/types/index.d.ts +0 -24
  1055. package/dist/types/types/index.d.ts.map +0 -1
  1056. package/dist/types/utils/debug.d.ts.map +0 -1
  1057. package/dist/types/utils/index.d.ts +0 -18
  1058. package/dist/types/utils/index.d.ts.map +0 -1
  1059. /package/dist/{types → cjs/types}/consts/block.d.ts +0 -0
  1060. /package/dist/{types → cjs/types}/consts/color.d.ts +0 -0
  1061. /package/dist/{types → cjs/types}/consts/config.d.ts +0 -0
  1062. /package/dist/{types → cjs/types}/consts/dimension.d.ts +0 -0
  1063. /package/dist/{types → cjs/types}/consts/hatch.d.ts +0 -0
  1064. /package/dist/{types → cjs/types}/consts/lineweight.d.ts +0 -0
  1065. /package/dist/{types → cjs/types}/consts/measurement.d.ts +0 -0
  1066. /package/dist/{types → cjs/types}/consts/obscuredLineTypes.d.ts +0 -0
  1067. /package/dist/{types → cjs/types}/consts/plotStyleType.d.ts +0 -0
  1068. /package/dist/{types/utils → cjs/types}/debug.d.ts +0 -0
  1069. /package/dist/{types → cjs/types}/parser/AutoCadColorIndex.d.ts +0 -0
  1070. /package/dist/{types → cjs/types}/parser/DxfArrayScanner.d.ts +0 -0
  1071. /package/dist/{types → cjs/types}/parser/entities/arc_dimension/consts.d.ts +0 -0
  1072. /package/dist/{types → cjs/types}/parser/entities/attdef/consts.d.ts +0 -0
  1073. /package/dist/{types → cjs/types}/parser/entities/face/consts.d.ts +0 -0
  1074. /package/dist/{types → cjs/types}/parser/entities/image/consts.d.ts +0 -0
  1075. /package/dist/{types → cjs/types}/parser/entities/leader/consts.d.ts +0 -0
  1076. /package/dist/{types → cjs/types}/parser/entities/lwpolyline/consts.d.ts +0 -0
  1077. /package/dist/{types → cjs/types}/parser/entities/mline/consts.d.ts +0 -0
  1078. /package/dist/{types → cjs/types}/parser/entities/mtext/consts.d.ts +0 -0
  1079. /package/dist/{types → cjs/types}/parser/entities/polyline/consts.d.ts +0 -0
  1080. /package/dist/{types → cjs/types}/parser/entities/spline/consts.d.ts +0 -0
  1081. /package/dist/{types → cjs/types}/parser/entities/text/consts.d.ts +0 -0
  1082. /package/dist/{types → cjs/types}/parser/entities/vertex/consts.d.ts +0 -0
  1083. /package/dist/{types → cjs/types}/parser/entities/wipeout/consts.d.ts +0 -0
  1084. /package/dist/{types → cjs/types}/parser/objects/consts.d.ts +0 -0
  1085. /package/dist/{types → cjs/types}/parser/objects/layout/consts.d.ts +0 -0
  1086. /package/dist/{types → cjs/types}/parser/objects/plotSettings/consts.d.ts +0 -0
  1087. /package/dist/{types → cjs/types}/parser/tables/ltype/consts.d.ts +0 -0
@@ -0,0 +1,99 @@
1
+ import type { Point3D } from '../../../types/shared.ts';
2
+ import type { DimensionEntityCommon } from '../dimension/types.ts';
3
+ /**
4
+ * `ARC_DIMENSION` was introduced in DXF R2004 and is not documented in DXF reference.
5
+ * Still there are C++ API documentation, so I referred to it mostly along other
6
+ * open source like ezdxf.
7
+ *
8
+ * It's separated ENTITY type but it shares many portion of `DIMENSION`.
9
+ *
10
+ * `dimensionType` of `ARC_DIMENSION` can have `5` or `8` under `0xf` bitmask.
11
+ * It varies to DXF version.
12
+ *
13
+ * @extends DimensionEntityCommon
14
+ */
15
+ export interface ArcDimensionEntity extends Omit<DimensionEntityCommon, 'type'> {
16
+ type: 'ARC_DIMENSION';
17
+ /** Parsed by group code `100` */
18
+ subclassMarker: 'AcDbArcDimension';
19
+ /**
20
+ * The start point for the arc length dimension's first extension line.
21
+ *
22
+ * Parsed by group code `13`.
23
+ *
24
+ * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbArcDimension__xLine1Point
25
+ */
26
+ xline1Point: Point3D;
27
+ /**
28
+ * The start point for the arc length dimension's second extension line.
29
+ *
30
+ * Parsed by group code `14`.
31
+ *
32
+ * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbArcDimension__xLine2Point
33
+ */
34
+ xline2Point: Point3D;
35
+ /**
36
+ * The center point of the arc dimensioned by the arc length dimension.
37
+ *
38
+ * Parsed by group code `15`.
39
+ *
40
+ * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbArcDimension__centerPoint
41
+ */
42
+ centerPoint: Point3D;
43
+ /**
44
+ * It exists in C++ documentation, but doesn't have any usage currently. Reserved for future use.
45
+ *
46
+ * Parsed by group code `70`.
47
+ *
48
+ * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbArcDimension__isPartial
49
+ */
50
+ isPartial: boolean;
51
+ /**
52
+ * The parameter of the arc being dimensioned corresponding to the arc length dimension's first definition point.
53
+ *
54
+ * Parsed by group code `41`.
55
+ *
56
+ * @note The unit is radian
57
+ * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbArcDimension__arcStartParam
58
+ */
59
+ startAngle: number;
60
+ /**
61
+ * The parameter of the arc being dimensioned corresponding to the arc length dimension's second definition point.
62
+ *
63
+ * Parsed by group code `42`.
64
+ *
65
+ * @note The unit is radian
66
+ * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbArcDimension__arcEndParam
67
+ */
68
+ endAngle: number;
69
+ /**
70
+ * Indicates the existence of extra leader of this entity.
71
+ *
72
+ * - `true` if this arc length dimension has an extra leader drawn to resolve ambiguity.
73
+ * - `false` if the arc length dimension has no extra leader drawn.
74
+ *
75
+ * Note that `leaderStart` and `leaderEnd` exist even if this is `false`.
76
+ *
77
+ * Parsed by group code `71`.
78
+ *
79
+ * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbArcDimension__hasLeader
80
+ */
81
+ hasLeader: boolean;
82
+ /**
83
+ * Sets the start point for the arc length dimension's extra leader, if drawn.
84
+ *
85
+ * Parsed by group code `16`.
86
+ *
87
+ * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbArcDimension__setLeader1Point_AcGePoint3d__
88
+ */
89
+ leaderStart: Point3D;
90
+ /**
91
+ * Sets the end point for the arc length dimension's extra leader, if drawn.
92
+ *
93
+ * Parsed by group code `17`.
94
+ *
95
+ * @see https://help.autodesk.com/view/OARX/2025/ENU/?guid=OARX-RefGuide-AcDbArcDimension__setLeader2Point_AcGePoint3d__
96
+ */
97
+ leaderEnd: Point3D;
98
+ }
99
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/arc_dimension/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,uBAAuB,CAAA;AAElE;;;;;;;;;;;GAWG;AACH,MAAM,WAAW,kBAAmB,SAAQ,IAAI,CAC9C,qBAAqB,EACrB,MAAM,CACP;IACC,IAAI,EAAE,eAAe,CAAA;IACrB,iCAAiC;IACjC,cAAc,EAAE,kBAAkB,CAAA;IAClC;;;;;;OAMG;IACH,WAAW,EAAE,OAAO,CAAA;IACpB;;;;;;OAMG;IACH,WAAW,EAAE,OAAO,CAAA;IACpB;;;;;;OAMG;IACH,WAAW,EAAE,OAAO,CAAA;IACpB;;;;;;OAMG;IACH,SAAS,EAAE,OAAO,CAAA;IAClB;;;;;;;OAOG;IACH,UAAU,EAAE,MAAM,CAAA;IAClB;;;;;;;OAOG;IACH,QAAQ,EAAE,MAAM,CAAA;IAChB;;;;;;;;;;;OAWG;IACH,SAAS,EAAE,OAAO,CAAA;IAClB;;;;;;OAMG;IACH,WAAW,EAAE,OAAO,CAAA;IACpB;;;;;;OAMG;IACH,SAAS,EAAE,OAAO,CAAA;CACnB"}
@@ -0,0 +1,12 @@
1
+ export declare enum AttributeFlag {
2
+ NONE = 0,
3
+ INVISIBLE = 1,
4
+ CONSTANT = 2,
5
+ VERIFICATION_REQUIRED = 4,
6
+ PRESET = 8
7
+ }
8
+ export declare enum AttDefMTextFlag {
9
+ MULTILINE = 2,
10
+ CONSTANT_MULTILINE = 4
11
+ }
12
+ //# sourceMappingURL=consts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/attdef/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACvB,IAAI,IAAI;IACR,SAAS,IAAI;IACb,QAAQ,IAAI;IACZ,qBAAqB,IAAI;IACzB,MAAM,IAAI;CACX;AAED,oBAAY,eAAe;IACzB,SAAS,IAAI;IACb,kBAAkB,IAAI;CACvB"}
@@ -0,0 +1,8 @@
1
+ import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
2
+ import type { AttdefEntity } from './types.ts';
3
+ export declare class AttDefEntityParser {
4
+ static ForEntityName: string;
5
+ private parser;
6
+ parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): AttdefEntity;
7
+ }
8
+ //# sourceMappingURL=parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/attdef/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAS7E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAwF9C,qBAAa,kBAAkB;IAC7B,MAAM,CAAC,aAAa,SAAW;IAC/B,OAAO,CAAC,MAAM,CAAgE;IAE9E,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAGrC,YAAY;CAEhC"}
@@ -0,0 +1,18 @@
1
+ import type { Point3D } from '../../../types/shared.ts';
2
+ import type { TextEntity } from '../text/types.ts';
3
+ export interface AttdefEntity extends Omit<TextEntity, 'type' | 'subclassMarker'> {
4
+ type: 'ATTDEF';
5
+ subclassMarker: 'AcDbAttributeDefinition';
6
+ prompt: string;
7
+ tag: string;
8
+ attributeFlag: number;
9
+ isLocked: boolean;
10
+ isDuplicatedRecord: boolean;
11
+ mtextFlag: number;
12
+ isReallyLocked: boolean;
13
+ numberOfSecondaryAttributes: number;
14
+ secondaryAttributesHardIds: string[];
15
+ alignmentPoint: Point3D;
16
+ annotationScale: number;
17
+ }
18
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/attdef/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AAElD,MAAM,WAAW,YAAa,SAAQ,IAAI,CACxC,UAAU,EACV,MAAM,GAAG,gBAAgB,CAC1B;IACC,IAAI,EAAE,QAAQ,CAAA;IACd,cAAc,EAAE,yBAAyB,CAAA;IACzC,MAAM,EAAE,MAAM,CAAA;IACd,GAAG,EAAE,MAAM,CAAA;IACX,aAAa,EAAE,MAAM,CAAA;IACrB,QAAQ,EAAE,OAAO,CAAA;IACjB,kBAAkB,EAAE,OAAO,CAAA;IAC3B,SAAS,EAAE,MAAM,CAAA;IACjB,cAAc,EAAE,OAAO,CAAA;IACvB,2BAA2B,EAAE,MAAM,CAAA;IACnC,0BAA0B,EAAE,MAAM,EAAE,CAAA;IACpC,cAAc,EAAE,OAAO,CAAA;IACvB,eAAe,EAAE,MAAM,CAAA;CACxB"}
@@ -0,0 +1,8 @@
1
+ import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
2
+ import type { AttributeEntity } from './types.ts';
3
+ export declare class AttributeEntityParser {
4
+ static ForEntityName: string;
5
+ private parser;
6
+ parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): AttributeEntity;
7
+ }
8
+ //# sourceMappingURL=parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/attribute/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAY7E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AA6KjD,qBAAa,qBAAqB;IAChC,MAAM,CAAC,aAAa,SAAW;IAC/B,OAAO,CAAC,MAAM,CAA0D;IAExE,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAGrC,eAAe;CAEnC"}
@@ -0,0 +1,31 @@
1
+ import type { Point3D } from '../../../types/shared.ts';
2
+ import type { CommonDxfEntity } from '../shared.ts';
3
+ export interface AttributeEntity extends CommonDxfEntity {
4
+ type: 'ATTRIB';
5
+ subclassMarker: 'AcDbAttribute';
6
+ thickness: number;
7
+ startPoint: Point3D;
8
+ textHeight: number;
9
+ text: string;
10
+ tag: string;
11
+ attributeFlag: number;
12
+ lineSpacing?: number;
13
+ rotation: number;
14
+ scale: number;
15
+ obliqueAngle: number;
16
+ textStyle: string;
17
+ textGenerationFlag: number;
18
+ horizontalJustification: number;
19
+ verticalJustification: number;
20
+ extrusionDirection: Point3D;
21
+ lockPositionFlag: boolean;
22
+ isDuplicatedEntriesKeep?: boolean;
23
+ mtextFlag: 2 | 4;
24
+ isReallyLocked?: boolean;
25
+ numberOfSecondaryAttributes?: number;
26
+ secondaryAttributesHardId?: string;
27
+ alignmentPoint: Point3D;
28
+ annotationScale?: number;
29
+ definitionTag?: string;
30
+ }
31
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/attribute/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,eAAgB,SAAQ,eAAe;IACtD,IAAI,EAAE,QAAQ,CAAA;IACd,cAAc,EAAE,eAAe,CAAA;IAC/B,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE,OAAO,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;IAClB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,aAAa,EAAE,MAAM,CAAA;IACrB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,EAAE,MAAM,CAAA;IAChB,KAAK,EAAE,MAAM,CAAA;IACb,YAAY,EAAE,MAAM,CAAA;IACpB,SAAS,EAAE,MAAM,CAAA;IACjB,kBAAkB,EAAE,MAAM,CAAA;IAC1B,uBAAuB,EAAE,MAAM,CAAA;IAC/B,qBAAqB,EAAE,MAAM,CAAA;IAC7B,kBAAkB,EAAE,OAAO,CAAA;IAC3B,gBAAgB,EAAE,OAAO,CAAA;IACzB,uBAAuB,CAAC,EAAE,OAAO,CAAA;IACjC,SAAS,EAAE,CAAC,GAAG,CAAC,CAAA;IAChB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,2BAA2B,CAAC,EAAE,MAAM,CAAA;IACpC,yBAAyB,CAAC,EAAE,MAAM,CAAA;IAClC,cAAc,EAAE,OAAO,CAAA;IACvB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,aAAa,CAAC,EAAE,MAAM,CAAA;CACvB"}
@@ -0,0 +1,8 @@
1
+ import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
2
+ import type { BodyEntity } from './types.ts';
3
+ export declare class BodyEntityParser {
4
+ static ForEntityName: string;
5
+ private parser;
6
+ parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): BodyEntity;
7
+ }
8
+ //# sourceMappingURL=parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/body/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAO7E,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAiB5C,qBAAa,gBAAgB;IAC3B,MAAM,CAAC,aAAa,SAAS;IAC7B,OAAO,CAAC,MAAM,CAAyC;IAEvD,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAGrC,UAAU;CAE9B"}
@@ -0,0 +1,10 @@
1
+ import type { CommonDxfEntity } from '../shared.ts';
2
+ export interface BodyEntity extends CommonDxfEntity {
3
+ type: 'BODY';
4
+ subclassMarker: 'AcDbModelerGeometry';
5
+ /** Modeler format version number (currently = 1) */
6
+ version: number;
7
+ /** Proprietary data */
8
+ data: string;
9
+ }
10
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/body/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,UAAW,SAAQ,eAAe;IACjD,IAAI,EAAE,MAAM,CAAA;IACZ,cAAc,EAAE,qBAAqB,CAAA;IACrC,oDAAoD;IACpD,OAAO,EAAE,MAAM,CAAA;IACf,uBAAuB;IACvB,IAAI,EAAE,MAAM,CAAA;CACb"}
@@ -0,0 +1,8 @@
1
+ import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
2
+ import type { CircleEntity } from './types.ts';
3
+ export declare class CircleEntityParser {
4
+ static ForEntityName: string;
5
+ private parser;
6
+ parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): CircleEntity;
7
+ }
8
+ //# sourceMappingURL=parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/circle/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAQ7E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAA;AAoC9C,qBAAa,kBAAkB;IAC7B,MAAM,CAAC,aAAa,SAAW;IAC/B,OAAO,CAAC,MAAM,CAAgE;IAE9E,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAGrC,YAAY;CAEhC"}
@@ -0,0 +1,11 @@
1
+ import type { Point3D } from '../../../types/shared.ts';
2
+ import type { CommonDxfEntity } from '../shared.ts';
3
+ export interface CircleEntity extends CommonDxfEntity {
4
+ type: 'CIRCLE';
5
+ subclassMarker: 'AcDbCircle';
6
+ thickness: number;
7
+ center: Point3D;
8
+ radius: number;
9
+ extrusionDirection: Point3D;
10
+ }
11
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/circle/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,YAAa,SAAQ,eAAe;IACnD,IAAI,EAAE,QAAQ,CAAA;IACd,cAAc,EAAE,YAAY,CAAA;IAC5B,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,OAAO,CAAA;IACf,MAAM,EAAE,MAAM,CAAA;IACd,kBAAkB,EAAE,OAAO,CAAA;CAC5B"}
@@ -0,0 +1,5 @@
1
+ export declare enum ShadowType {
2
+ RayTrace = 0,
3
+ ShadowMap = 1
4
+ }
5
+ //# sourceMappingURL=consts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../src/parser/entities/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,UAAU;IACpB,QAAQ,IAAI;IACZ,SAAS,IAAI;CACd"}
@@ -0,0 +1,14 @@
1
+ import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
2
+ import { DXFParserSnippet } from '../../shared/parserGenerator.ts';
3
+ import type { DimensionEntity } from './types.ts';
4
+ export declare const CommonDimensionSnippets: DXFParserSnippet[];
5
+ export declare const AlignedDimensionSnippets: DXFParserSnippet[];
6
+ export declare const AngularDimensionSnippets: DXFParserSnippet[];
7
+ export declare const OrdinateDimensionSnippets: DXFParserSnippet[];
8
+ export declare const RadialDimensionSnippets: DXFParserSnippet[];
9
+ export declare const DimensionSnippets: DXFParserSnippet[];
10
+ export declare class DimensionParser {
11
+ static ForEntityName: string;
12
+ parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): DimensionEntity;
13
+ }
14
+ //# sourceMappingURL=parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/dimension/parser.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAC7E,OAAO,EAGL,gBAAgB,EAIjB,MAAM,iCAAiC,CAAA;AAExC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAEjD,eAAO,MAAM,uBAAuB,EAAE,gBAAgB,EAqErD,CAAA;AAED,eAAO,MAAM,wBAAwB,EAAE,gBAAgB,EAkCtD,CAAA;AAED,eAAO,MAAM,wBAAwB,EAAE,gBAAgB,EA0BtD,CAAA;AAED,eAAO,MAAM,yBAAyB,EAAE,gBAAgB,EAgBvD,CAAA;AAED,eAAO,MAAM,uBAAuB,EAAE,gBAAgB,EAgBrD,CAAA;AAkBD,eAAO,MAAM,iBAAiB,EAAE,gBAAgB,EAkB/C,CAAA;AAED,qBAAa,eAAe;IAC1B,MAAM,CAAC,aAAa,SAAc;IAElC,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAAG,eAAe;CAM3E"}
@@ -0,0 +1,202 @@
1
+ import type { AttachmentPoint, DimensionTextLineSpacing } from '../../../consts/dimension.ts';
2
+ import type { Point3D } from '../../../types/shared.ts';
3
+ import type { DimStyleVariables } from '../../tables/dimStyle/types.ts';
4
+ import type { CommonDxfEntity } from '../shared.ts';
5
+ /**
6
+ * Base type of *DIMENSION* entities.
7
+ *
8
+ * @note In AutoCAD 2025, *DIMENSION* can have DIMSTYLE override not only in `xdata`
9
+ * but directly at the object itself. In this case, object may have DimStyle fields.
10
+ * @see DimStyleVariables
11
+ */
12
+ export interface DimensionEntityCommon extends CommonDxfEntity, Partial<DimStyleVariables> {
13
+ type: 'DIMENSION';
14
+ /**
15
+ * Actually there are more than one subclass in one entity
16
+ * but because of historical reasons, very last subclass marker will be set
17
+ * */
18
+ subclassMarker: string;
19
+ /** Version number. Actually there is only one valid value `0` which means 2010 */
20
+ version: number;
21
+ /** Name of the block that contains the entities that make up the dimension picture */
22
+ name: string;
23
+ /** Point defined by group code `(10, 20, 30)`. */
24
+ definitionPoint: Point3D;
25
+ /** Middle point of dimension text (in OCS) */
26
+ textPoint: Point3D;
27
+ /**
28
+ * Dimension type:
29
+ *
30
+ * Values `0` ~ `6` are integer values that represent the dimension type.
31
+ *
32
+ * Values `32`, `64`, and `128` are bit values, which are added to the integer values
33
+ * (value `32` is always set in R13 and later releases)
34
+ *
35
+ * @see DimensionType
36
+ * */
37
+ dimensionType: number;
38
+ attachmentPoint: AttachmentPoint;
39
+ textLineSpacingStyle?: DimensionTextLineSpacing;
40
+ textLineSpacingFactor?: number;
41
+ /**
42
+ * Actual measurement
43
+ *
44
+ * @note This value is often missing or set to `0` in actual files,
45
+ * so don't believe this too much.
46
+ * */
47
+ measurement?: number;
48
+ /**
49
+ * Dimension text explicitly entered by the user.
50
+ *
51
+ * - If `null` or `"<>"`, the dimension measurement is drawn as the text.
52
+ * - If `""`, the text is suppressed.
53
+ * - Anything else is drawn as the text.
54
+ * */
55
+ text?: string;
56
+ /**
57
+ * The rotation angle of the dimension text away from
58
+ * its default orientation (the direction of the dimension line)
59
+ * */
60
+ textRotation?: number;
61
+ /**
62
+ * Indicates the horizontal direction for the dimension entity.
63
+ *
64
+ * The dimension entity determines the orientation of dimension text
65
+ * and lines for horizontal, vertical, and rotated linear dimensions.
66
+ *
67
+ * This group value is the negative of the angle between the OCS X axis
68
+ * and the UCS X axis.
69
+ *
70
+ * It is always in the XY plane of the OCS.
71
+ */
72
+ ocsRotation?: number;
73
+ extrusionDirection?: Point3D;
74
+ /** Dimension style name */
75
+ styleName: string;
76
+ }
77
+ /**
78
+ * Type for linear and aligned dimension.
79
+ *
80
+ * @note In AutoCAD 2025, *DIMENSION* can have DIMSTYLE override not only in `xdata`
81
+ * but directly at the object itself. In this case, object may have DimStyle fields.
82
+ */
83
+ export interface AlignedDimensionEntity extends DimensionEntityCommon {
84
+ /**
85
+ * Be aware of the naming: `AcDbAlignedDimension` is represented as "linear dimension"
86
+ * in AutoCAD, while `AcDbRotatedDimension` is represented as "aligned dimension".
87
+ *
88
+ * This is so confusing, but as we're following DXF spec, we used the one in data as is.
89
+ */
90
+ subclassMarker: 'AcDbAlignedDimension' | 'AcDbRotatedDimension';
91
+ /** Insertion point for clones of a dimension—Baseline and Continue (in OCS) */
92
+ insertionPoint?: Point3D;
93
+ /**
94
+ * Point defined by group code `(13, 23, 33)`. This specifies the start point of
95
+ * the **first extension line**.
96
+ * */
97
+ subDefinitionPoint1: Point3D;
98
+ /**
99
+ * Point defined by group code `(14, 24, 34)`. This specifies the start point of
100
+ * the **second extension line**.
101
+ */
102
+ subDefinitionPoint2: Point3D;
103
+ /** Angle of rotated, horizontal, or vertical dimensions */
104
+ rotationAngle?: number;
105
+ /**
106
+ * Linear dimension types with an oblique angle have an optional group code `52`.
107
+ * When added to the rotation angle of the linear dimension (group code `50`),
108
+ * it gives the angle of the extension lines */
109
+ obliqueAngle?: number;
110
+ }
111
+ /**
112
+ * `AngularDimension` is used to describe arc length or degree of angle.
113
+ *
114
+ * This is the most confusing part of *DIMENSION* entity, so read carefuly
115
+ * every comment of each properties before you use it.
116
+ *
117
+ * @note In AutoCAD 2025, *DIMENSION* can have DIMSTYLE override not only in `xdata`
118
+ * but directly at the object itself. In this case, object may have DimStyle fields.
119
+ */
120
+ export interface AngularDimensionEntity extends DimensionEntityCommon {
121
+ /**
122
+ * @note subclass marker doesn't related to 3-point or 4-point mode.
123
+ */
124
+ subclassMarker: 'AcDb3PointAngularDimension' | 'AcDb2LineAngularDimension';
125
+ /**
126
+ * Point defined by group code `(13, 23, 33)`.
127
+ * This is used to determine the first extension line.
128
+ * */
129
+ subDefinitionPoint1: Point3D;
130
+ /**
131
+ * Point defined by group code `(14, 24, 34)`.
132
+ *
133
+ * In 3-point mode, this specifies the start of the second extension line.
134
+ *
135
+ * In 4-point mode, this specifies the start of the first extension line.
136
+ * */
137
+ subDefinitionPoint2: Point3D;
138
+ /**
139
+ * Point defined by group code `(15,25,35)`.
140
+ *
141
+ * In 3-point mode, this specifies the vertex of the angle in three point mode.
142
+ *
143
+ * In 4-point mode, this specifies the start of the second extension line.
144
+ */
145
+ centerPoint: Point3D;
146
+ /**
147
+ * Point defined by group code `(16, 26, 36)`.
148
+ *
149
+ * This specifies the location of the dimension line arc.
150
+ *
151
+ * @note this only exist on 4-point mode.
152
+ * */
153
+ arcPoint?: Point3D;
154
+ }
155
+ /**
156
+ * Z shaped dimension.
157
+ *
158
+ * Note that `definitionPoint` of `OrdinateDimension` doesn't matter at all,
159
+ * as the actual points are defined in `subDefinitionPoint1` and `subDefinitionPoint2`.
160
+ *
161
+ * @note In AutoCAD 2025, *DIMENSION* can have DIMSTYLE override not only in `xdata`
162
+ * but directly at the object itself. In this case, object may have DimStyle fields.
163
+ */
164
+ export interface OrdinateDimensionEntity extends DimensionEntityCommon {
165
+ subclassMarker: 'AcDbOrdinateDimension';
166
+ /**
167
+ * Point defined by group code `(13, 23, 33)`.
168
+ *
169
+ * It specifies the start position of dimension line.
170
+ * */
171
+ subDefinitionPoint1: Point3D;
172
+ /**
173
+ * Point defined by group code `(14, 24, 34)`.
174
+ *
175
+ * It specifies the end position of ordinate dimension.
176
+ * */
177
+ subDefinitionPoint2: Point3D;
178
+ }
179
+ /**
180
+ * In `AcDbRadialDimension`, `definitionPoint` specifies the center of circle.
181
+ *
182
+ * In `AcDbDiametricDimension`, `definitionPoint` specifies the one end of diameter line.
183
+ *
184
+ * @note In AutoCAD 2025, *DIMENSION* can have DIMSTYLE override not only in `xdata`
185
+ * but directly at the object itself. In this case, object may have DimStyle fields.
186
+ */
187
+ export interface RadialDiameterDimensionEntity extends DimensionEntityCommon {
188
+ subclassMarker: 'AcDbRadialDimension' | 'AcDbDiametricDimension';
189
+ /**
190
+ * Point defined by group code `(15, 25, 35)`.
191
+ *
192
+ * It specifies the other end of radial/diameter line.
193
+ * */
194
+ subDefinitionPoint: Point3D;
195
+ /** Leader length for radius and diameter dimensions */
196
+ leaderLength: number;
197
+ }
198
+ /**
199
+ * Combined type of *DIMENSION* entity.
200
+ */
201
+ export type DimensionEntity = DimensionEntityCommon & (Partial<AlignedDimensionEntity> | Partial<AngularDimensionEntity> | Partial<OrdinateDimensionEntity> | Partial<RadialDiameterDimensionEntity>);
202
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/dimension/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,wBAAwB,EACzB,MAAM,8BAA8B,CAAA;AACrC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAA;AACvE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD;;;;;;GAMG;AACH,MAAM,WAAW,qBACf,SAAQ,eAAe,EAAE,OAAO,CAAC,iBAAiB,CAAC;IACnD,IAAI,EAAE,WAAW,CAAA;IACjB;;;SAGK;IACL,cAAc,EAAE,MAAM,CAAA;IACtB,kFAAkF;IAClF,OAAO,EAAE,MAAM,CAAA;IACf,sFAAsF;IACtF,IAAI,EAAE,MAAM,CAAA;IACZ,kDAAkD;IAClD,eAAe,EAAE,OAAO,CAAA;IACxB,8CAA8C;IAC9C,SAAS,EAAE,OAAO,CAAA;IAClB;;;;;;;;;SASK;IACL,aAAa,EAAE,MAAM,CAAA;IACrB,eAAe,EAAE,eAAe,CAAA;IAChC,oBAAoB,CAAC,EAAE,wBAAwB,CAAA;IAC/C,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B;;;;;SAKK;IACL,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB;;;;;;SAMK;IACL,IAAI,CAAC,EAAE,MAAM,CAAA;IACb;;;SAGK;IACL,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB;;;;;;;;;;OAUG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,2BAA2B;IAC3B,SAAS,EAAE,MAAM,CAAA;CAClB;AAED;;;;;GAKG;AACH,MAAM,WAAW,sBAAuB,SAAQ,qBAAqB;IACnE;;;;;OAKG;IACH,cAAc,EAAE,sBAAsB,GAAG,sBAAsB,CAAA;IAC/D,+EAA+E;IAC/E,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB;;;SAGK;IACL,mBAAmB,EAAE,OAAO,CAAA;IAC5B;;;OAGG;IACH,mBAAmB,EAAE,OAAO,CAAA;IAC5B,2DAA2D;IAC3D,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB;;;mDAG+C;IAC/C,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED;;;;;;;;GAQG;AACH,MAAM,WAAW,sBAAuB,SAAQ,qBAAqB;IACnE;;OAEG;IACH,cAAc,EAAE,4BAA4B,GAAG,2BAA2B,CAAA;IAC1E;;;SAGK;IACL,mBAAmB,EAAE,OAAO,CAAA;IAC5B;;;;;;SAMK;IACL,mBAAmB,EAAE,OAAO,CAAA;IAC5B;;;;;;OAMG;IACH,WAAW,EAAE,OAAO,CAAA;IACpB;;;;;;SAMK;IACL,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED;;;;;;;;GAQG;AACH,MAAM,WAAW,uBAAwB,SAAQ,qBAAqB;IACpE,cAAc,EAAE,uBAAuB,CAAA;IACvC;;;;SAIK;IACL,mBAAmB,EAAE,OAAO,CAAA;IAC5B;;;;SAIK;IACL,mBAAmB,EAAE,OAAO,CAAA;CAC7B;AAED;;;;;;;GAOG;AACH,MAAM,WAAW,6BAA8B,SAAQ,qBAAqB;IAC1E,cAAc,EAAE,qBAAqB,GAAG,wBAAwB,CAAA;IAChE;;;;SAIK;IACL,kBAAkB,EAAE,OAAO,CAAA;IAC3B,uDAAuD;IACvD,YAAY,EAAE,MAAM,CAAA;CACrB;AAED;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,qBAAqB,GACjD,CACI,OAAO,CAAC,sBAAsB,CAAC,GAC/B,OAAO,CAAC,sBAAsB,CAAC,GAC/B,OAAO,CAAC,uBAAuB,CAAC,GAChC,OAAO,CAAC,6BAA6B,CAAC,CACzC,CAAA"}
@@ -0,0 +1,8 @@
1
+ import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
2
+ import type { EllipseEntity } from './types.ts';
3
+ export declare class EllipseEntityParser {
4
+ static ForEntityName: string;
5
+ private parser;
6
+ parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): EllipseEntity;
7
+ }
8
+ //# sourceMappingURL=parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/ellipse/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAQ7E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,YAAY,CAAA;AA6C/C,qBAAa,mBAAmB;IAC9B,MAAM,CAAC,aAAa,SAAY;IAChC,OAAO,CAAC,MAAM,CAGb;IAED,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAGrC,aAAa;CAEjC"}
@@ -0,0 +1,13 @@
1
+ import type { Point3D } from '../../../types/shared.ts';
2
+ import type { CommonDxfEntity } from '../shared.ts';
3
+ export interface EllipseEntity extends CommonDxfEntity {
4
+ type: 'ELLIPSE';
5
+ subclassMarker: 'AcDbEllipse';
6
+ center: Point3D;
7
+ majorAxisEndPoint: Point3D;
8
+ extrusionDirection: Point3D;
9
+ axisRatio: number;
10
+ startAngle: number;
11
+ endAngle: number;
12
+ }
13
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/ellipse/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,aAAc,SAAQ,eAAe;IACpD,IAAI,EAAE,SAAS,CAAA;IACf,cAAc,EAAE,aAAa,CAAA;IAC7B,MAAM,EAAE,OAAO,CAAA;IACf,iBAAiB,EAAE,OAAO,CAAA;IAC1B,kBAAkB,EAAE,OAAO,CAAA;IAC3B,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,MAAM,CAAA;CACjB"}
@@ -0,0 +1,7 @@
1
+ export declare enum FaceEdgeInvisibility {
2
+ First = 1,
3
+ Second = 2,
4
+ Third = 4,
5
+ Fourth = 8
6
+ }
7
+ //# sourceMappingURL=consts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"consts.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/face/consts.ts"],"names":[],"mappings":"AAAA,oBAAY,oBAAoB;IAC9B,KAAK,IAAI;IACT,MAAM,IAAI;IACV,KAAK,IAAI;IACT,MAAM,IAAI;CACX"}
@@ -0,0 +1,8 @@
1
+ import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
2
+ import type { FaceEntity } from './types.ts';
3
+ export declare class FaceEntityParser {
4
+ static ForEntityName: string;
5
+ private parser;
6
+ parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): FaceEntity;
7
+ }
8
+ //# sourceMappingURL=parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/face/parser.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAA;AAQ7E,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AA+B5C,qBAAa,gBAAgB;IAC3B,MAAM,CAAC,aAAa,SAAW;IAE/B,OAAO,CAAC,MAAM,CAAyC;IAEvD,WAAW,CAAC,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,YAAY,GAAG,UAAU;CAKtE"}
@@ -0,0 +1,8 @@
1
+ import type { Point3D } from '../../../types/shared.ts';
2
+ import type { CommonDxfEntity } from '../shared.ts';
3
+ export interface FaceEntity extends CommonDxfEntity {
4
+ subclassMarker: 'AcDbFace';
5
+ vertices: Point3D[];
6
+ shape: number;
7
+ }
8
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/entities/face/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAA;AACvD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAEnD,MAAM,WAAW,UAAW,SAAQ,eAAe;IACjD,cAAc,EAAE,UAAU,CAAA;IAC1B,QAAQ,EAAE,OAAO,EAAE,CAAA;IACnB,KAAK,EAAE,MAAM,CAAA;CACd"}
@@ -0,0 +1,7 @@
1
+ import { DXFParserSnippet } from '../../../shared/parserGenerator.ts';
2
+ export declare const LineEdgeSnippets: DXFParserSnippet[];
3
+ export declare const CircularEdgeSnippets: DXFParserSnippet[];
4
+ export declare const EllipseEdgeSnippets: DXFParserSnippet[];
5
+ export declare const SplineEdgeSnippets: DXFParserSnippet[];
6
+ export declare const EdgeBoundaryPathDataSnippets: DXFParserSnippet[];
7
+ //# sourceMappingURL=edge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"edge.d.ts","sourceRoot":"","sources":["../../../../../../../src/parser/entities/hatch/boundaryPathData/edge.ts"],"names":[],"mappings":"AAEA,OAAO,EAEL,gBAAgB,EAIjB,MAAM,oCAAoC,CAAA;AAG3C,eAAO,MAAM,gBAAgB,EAAE,gBAAgB,EAW9C,CAAA;AAED,eAAO,MAAM,oBAAoB,EAAE,gBAAgB,EA0BlD,CAAA;AAED,eAAO,MAAM,mBAAmB,EAAE,gBAAgB,EA+BjD,CAAA;AAED,eAAO,MAAM,kBAAkB,EAAE,gBAAgB,EAsEhD,CAAA;AASD,eAAO,MAAM,4BAA4B,EAAE,gBAAgB,EAyB1D,CAAA"}
@@ -0,0 +1,5 @@
1
+ import type { DxfArrayScanner, ScannerGroup } from '../../../DxfArrayScanner.ts';
2
+ export declare function parseBoundaryPathData(curr: ScannerGroup, scanner: DxfArrayScanner): {
3
+ boundaryPathTypeFlag: any;
4
+ };
5
+ //# sourceMappingURL=parser.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parser.d.ts","sourceRoot":"","sources":["../../../../../../../src/parser/entities/hatch/boundaryPathData/parser.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,6BAA6B,CAAA;AAKhF,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,YAAY,EAClB,OAAO,EAAE,eAAe;;EAiBzB"}
@@ -0,0 +1,3 @@
1
+ import { type DXFParserSnippet } from '../../../shared/parserGenerator.ts';
2
+ export declare const PolylineSnippets: DXFParserSnippet[];
3
+ //# sourceMappingURL=polyline.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"polyline.d.ts","sourceRoot":"","sources":["../../../../../../../src/parser/entities/hatch/boundaryPathData/polyline.ts"],"names":[],"mappings":"AACA,OAAO,EACL,KAAK,gBAAgB,EAGtB,MAAM,oCAAoC,CAAA;AAG3C,eAAO,MAAM,gBAAgB,EAAE,gBAAgB,EAkC9C,CAAA"}
@@ -0,0 +1,3 @@
1
+ import { DXFParserSnippet } from '../../../shared/parserGenerator.ts';
2
+ export declare const CommonBoundaryPathDataSnippets: DXFParserSnippet[];
3
+ //# sourceMappingURL=shared.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../../../../../../src/parser/entities/hatch/boundaryPathData/shared.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAY,MAAM,oCAAoC,CAAA;AAE/E,eAAO,MAAM,8BAA8B,EAAE,gBAAgB,EAa5D,CAAA"}
@@ -0,0 +1,8 @@
1
+ import type { DxfArrayScanner, ScannerGroup } from '../../DxfArrayScanner.ts';
2
+ import type { HatchEntity } from './types/hatch.ts';
3
+ export declare class HatchEntityParser {
4
+ static ForEntityName: string;
5
+ private parser;
6
+ parseEntity(scanner: DxfArrayScanner, curr: ScannerGroup): HatchEntity;
7
+ }
8
+ //# sourceMappingURL=parser.d.ts.map