@antv/util
Version:
<h1 align="center">@antv/util</h1>
17 lines (16 loc) • 382 B
TypeScript
import type { PathArray } from '../types';
/**
* The `PathParser` is used by the `parsePathString` static method
* to generate a `pathArray`.
*/
export declare class PathParser {
pathValue: string;
segments: PathArray;
max: number;
index: number;
param: number;
segmentStart: number;
data: any;
err: string;
constructor(pathString: string);
}