UNPKG

flowmolio

Version:

[![Tests](https://github.com/vladvlasov256/flowmolio/actions/workflows/test.yml/badge.svg)](https://github.com/vladvlasov256/flowmolio/actions/workflows/test.yml) [![Coverage](https://codecov.io/gh/vladvlasov256/flowmolio/branch/main/graph/badge.svg)](htt

8 lines (7 loc) 345 B
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;