UNPKG

@luncheon/simplify-svg-path

Version:
11 lines (10 loc) 295 B
interface Point { readonly x: number; readonly y: number; } declare const simplifySvgPath: (points: readonly (readonly [number, number])[] | readonly Point[], options?: { closed?: boolean; tolerance?: number; precision?: number; }) => string; export default simplifySvgPath;