path.d.ts 514 B

123456
  1. import type { CurveArray, PathArray } from '@antv/util';
  2. import type { DisplayObject, ParsedPathStyleProps } from '../../display-objects';
  3. import type { IElement } from '../../dom';
  4. export declare function parsePath(path: string | PathArray, object: DisplayObject): ParsedPathStyleProps['path'];
  5. export declare function mergePaths(left: ParsedPathStyleProps['path'], right: ParsedPathStyleProps['path'], object: IElement): [CurveArray, CurveArray, (b: CurveArray) => CurveArray];
  6. //# sourceMappingURL=path.d.ts.map