Leon4gr45's picture
Include updated package-lock.json (part 12)
391a73c verified
Raw
History Blame Contribute Delete
194 Bytes
interface SvgNode {
type: string;
props: Record<string, unknown>;
children?: SvgNode[];
}
declare function parseSvg(svgString: string): SvgNode;
export { type SvgNode, parseSvg };