/
Alcatraz
/
Wagomon
Обзор
Документация
Войти
/
Alcatraz
/
Wagomon
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/zrender/lib/tool/path.d.ts
14 строк
664 B
saitgalineu
fix
27 фев 2026, 12:39
27 фев 2026, 12:39
a5092f1
Код
Авторство
О чём код?
import Path, { PathProps } from '../graphic/Path'; import { MatrixArray } from '../core/matrix'; declare type SVGPathOption = Omit<PathProps, 'shape' | 'buildPath'>; declare class SVGPath extends Path { applyTransform(m: MatrixArray): void; } export declare function createFromString(str: string, opts?: SVGPathOption): SVGPath; export declare function extendFromString(str: string, defaultOpts?: SVGPathOption): typeof SVGPath; export declare function mergePath(pathEls: Path[], opts: PathProps): Path<PathProps>; export declare function clonePath(sourcePath: Path, opts?: { bakeTransform?: boolean; toLocal?: boolean; }): Path<PathProps>; export {};