Update index.d.ts (#46874)

This commit is contained in:
Jesse Donat 2020-08-18 19:22:58 -05:00 committed by GitHub
parent 9799ac9b73
commit 791c693c98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,5 +5,5 @@
type Point = [number, number];
declare function robustPointInPolygon(vs: Point[], point: Point): number;
declare function robustPointInPolygon(vs: Point[], point: Point): -1 | 0 | 1;
export = robustPointInPolygon;