UNPKG

203 BTypeScriptView Raw
1export interface Point {
2 x: number;
3 y: number;
4}
5export interface BoundPoint {
6 min: Point;
7 max: Point;
8}
9export declare function pathIntersection(path1: any, path2: any): number | any[];