UNPKG

@antv/util

Version:

<h1 align="center">@antv/util</h1>

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;