7 lines
231 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
/**
* Encode the `SVG` to be used on `CSS`: https://bl.ocks.org/jennyknuth/222825e315d45a738ed9d6e04c7a88d0.
*
* @param svg The `SVG` source.
*/
declare function encodeSvgForCss(svg: string): string;
export { encodeSvgForCss };