Urara-Blog/node_modules/.pnpm-store/v3/files/38/1b3a85e9081fd16c73d9e622fa6cf629a574cade6522ffc92fbcfea85d3e444392ca9a5953c18606e009b66ecb0a0ed39a108eeafa93d93eee39758473dca1
2022-08-14 01:14:53 +08:00

19 lines
340 B
Text

/**
* IDs usage:
*
* id="{id}"
* xlink:href="#{id}"
* url(#{id})
*
* From SVG animations:
*
* begin="0;{id}.end"
* begin="{id}.end"
* begin="{id}.click"
*/
/**
* Replace IDs in SVG output with unique IDs
*/
declare function replaceIDs(body: string, prefix?: string | ((id: string) => string)): string;
export { replaceIDs };