9 lines
205 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
/**
* Replace IDs in SVG output with unique IDs
*/
declare function replaceIDs(body: string): string;
/**
* Clear ID cache
*/
declare function clearIDCache(): void;
export { clearIDCache, replaceIDs };