Files
infocom-systems-design/node_modules/@iconify/utils/lib/svg/id.d.ts
2025-10-03 22:27:28 +03:00

18 lines
338 B
TypeScript

/**
* 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 };