版博士V2.0程序
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.
 
 
 
 

20 line
340 B

  1. /**
  2. * IDs usage:
  3. *
  4. * id="{id}"
  5. * xlink:href="#{id}"
  6. * url(#{id})
  7. *
  8. * From SVG animations:
  9. *
  10. * begin="0;{id}.end"
  11. * begin="{id}.end"
  12. * begin="{id}.click"
  13. */
  14. /**
  15. * Replace IDs in SVG output with unique IDs
  16. */
  17. declare function replaceIDs(body: string, prefix?: string | ((id: string) => string)): string;
  18. export { replaceIDs };