Spaces:
Sleeping
Sleeping
File size: 194 Bytes
391a73c | 1 2 3 4 5 6 7 8 9 10 | interface SvgNode {
type: string;
props: Record<string, unknown>;
children?: SvgNode[];
}
declare function parseSvg(svgString: string): SvgNode;
export { type SvgNode, parseSvg };
|