Blame · Line-by-line history
sanitize-html.d.ts
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| 8ed88f2 | 1 | // No @types/sanitize-html package exists on the registry; minimal ambient |
| 2 | // declaration covering the surface src/lib/markdown.ts actually uses | |
| 3 | // (the default sanitize function + the IOptions bag passed to it). | |
| 4 | declare module "sanitize-html" { | |
| 5 | namespace sanitizeHtml { | |
| 6 | interface IOptions { | |
| 7 | [key: string]: any; | |
| 8 | } | |
| 9 | } | |
| 10 | function sanitizeHtml(html: string, options?: sanitizeHtml.IOptions): string; | |
| 11 | export = sanitizeHtml; | |
| 12 | } |