dxf-json 0.0.17 → 0.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,6 +1,2 @@
1
1
  import DxfParser from './parser/DxfParser';
2
- declare const _default: {
3
- DxfParser: typeof DxfParser;
4
- };
5
- export default _default;
6
- export { DxfParser };
2
+ export default DxfParser;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dxf-json",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "description": "perfect dxf parser",
5
5
  "main": "./src/index.ts",
6
6
  "type": "module",
package/src/index.ts CHANGED
@@ -1,8 +1,3 @@
1
1
  import DxfParser from './parser/DxfParser'
2
2
 
3
-
4
- export default {
5
- DxfParser,
6
- };
7
-
8
- export { DxfParser }
3
+ export default DxfParser