UNPKG

@antv/util

Version:

> AntV 底层依赖的工具库,不建议在自己业务中使用。

17 lines (16 loc) 382 B
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); }