build-dxf 0.1.81 → 0.1.83

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-dxf",
3
- "version": "0.1.81",
3
+ "version": "0.1.83",
4
4
  "description": "线段构建双线墙壁的dxf版本",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",
package/src/build.d.ts CHANGED
@@ -84,7 +84,7 @@ export declare function getGlobalDxfSystem(): DxfSystem | null;
84
84
  * @param direction
85
85
  * @returns
86
86
  */
87
- export declare function hasCircle(lineData: OriginalDataItem[], startIndex: number, direction: any): {
87
+ export declare function hasCircle(lineData: OriginalDataItem[], startIndex: number, direction?: any): {
88
88
  readonly originalIndices: number[];
89
89
  readonly indices: number[];
90
90
  circle: LineSegment<Record<string, any>>[];