You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
340 B
19 lines
340 B
/**
|
|
* 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 };
|
|
|