We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9222b7b commit 5ebd2dfCopy full SHA for 5ebd2df
1 file changed
types/delaunator/index.d.ts
@@ -39,7 +39,11 @@ declare class Delaunator<A extends ArrayLike<number>> {
39
* Constructs a delaunay triangulation object given an array of custom points. Duplicate points are skipped.
40
* getX and getY are optional functions for custom point formats. Duplicate points are skipped.
41
*/
42
- static from<P>(points: ArrayLike<P>, getX: (point: P) => number, getY: (point: P) => number): Delaunator<Float64Array>;
+ static from<P>(
43
+ points: ArrayLike<P>,
44
+ getX: (point: P) => number,
45
+ getY: (point: P) => number
46
+ ): Delaunator<Float64Array>;
47
48
/**
49
* Updates the triangulation if you modified delaunay.coords values in place, avoiding expensive memory
0 commit comments