UNPKG

208 BTypeScriptView Raw
1import type { Point, PathArray } from '../types';
2/**
3 * Checks if a given point is in the stroke of a path.
4 */
5export declare function isPointInStroke(pathInput: string | PathArray, point: Point): boolean;