flowmolio
Version:
[](https://github.com/vladvlasov256/flowmolio/actions/workflows/test.yml) [](htt
8 lines (7 loc) • 345 B
TypeScript
import { SVGElementNode } from '../types';
export declare function parseSVG(svgString: string): SVGElementNode;
export declare function findElementById(tree: SVGElementNode, id: string): SVGElementNode | null;
/**
* Serializes an SVG element tree back to string format
*/
export declare function serializeSVG(svgTree: SVGElementNode): string;