UNPKG

@antv/util

Version:

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

9 lines (8 loc) 295 B
import type { PathArray, NormalArray } from '../types'; /** * @example * const path = 'M0 0 H50'; * const normalizedPath = SVGPathCommander.normalizePath(path); * // result => [['M', 0, 0], ['L', 50, 0]] */ export declare function normalizePath(pathInput: string | PathArray): NormalArray;