Skip to content

Commit 5ebd2df

Browse files
authored
Attempt to format index.d.ts
1 parent 9222b7b commit 5ebd2df

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

types/delaunator/index.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ declare class Delaunator<A extends ArrayLike<number>> {
3939
* Constructs a delaunay triangulation object given an array of custom points. Duplicate points are skipped.
4040
* getX and getY are optional functions for custom point formats. Duplicate points are skipped.
4141
*/
42-
static from<P>(points: ArrayLike<P>, getX: (point: P) => number, getY: (point: P) => number): Delaunator<Float64Array>;
42+
static from<P>(
43+
points: ArrayLike<P>,
44+
getX: (point: P) => number,
45+
getY: (point: P) => number
46+
): Delaunator<Float64Array>;
4347

4448
/**
4549
* Updates the triangulation if you modified delaunay.coords values in place, avoiding expensive memory

0 commit comments

Comments
 (0)