inner-html.d.cts 273 B

123456789
  1. /**
  2. * Clean up value for innerHTML assignment
  3. *
  4. * This code doesn't actually clean up anything.
  5. * It is intended be used with Iconify icon data, which has already been validated
  6. */
  7. declare function cleanUpInnerHTML(html: string): string;
  8. export { cleanUpInnerHTML };