/** * From https://github.com/mourner/simplify-js/blob/master/simplify.js */ export interface Point { x: number; y: number; } export declare function simplifyPath(points: Point[], tolerance?: number, highestQuality?: boolean): Point[]; //# sourceMappingURL=simplify-path.d.ts.map