We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e00b916 commit fbeb95bCopy full SHA for fbeb95b
2 files changed
packages/modeling/src/geometries/poly2/type.d.ts
@@ -1,7 +1,3 @@
1
import type { Vec2 } from '../../maths/vec2/type.d.ts'
2
3
-export declare interface Poly2 {
4
- points: Array<Vec2>
5
-}
6
-
7
-export default Poly2
+export declare interface Poly2 { points: Array<Vec2> }
packages/modeling/src/operations/booleans/trees/splitPolygonByPlane.d.ts
@@ -28,6 +28,4 @@ interface SplitRes
28
// In case the polygon is spanning, returns:
29
// .front: a Polygon3 of the front part
30
// .back: a Polygon3 of the back part
31
-declare function splitPolygonByPlane(plane: Plane, polygon: Poly3): SplitRes;
32
33
-export default splitPolygonByPlane;
+export declare function splitPolygonByPlane(plane: Plane, polygon: Poly3): SplitRes;
0 commit comments