mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 20:49:29 +08:00
19 lines
340 B
Text
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 };
|