Skip to content

Commit

Permalink
feat(geom-tessellate): enable TS strict compiler flags (refactor)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jun 4, 2019
1 parent 748417b commit 8d610c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/geom-tessellate/src/tessellate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function tessellate(
points: ReadonlyVec[],
tessFns: Iterable<Tessellator>
): Vec[][];
export function tessellate(...args) {
export function tessellate(...args: any[]) {
return transduce(
scan(
reducer(
Expand Down

0 comments on commit 8d610c3

Please sign in to comment.