| 3 | declare module 'pdfjs-dist/build/pdf.mjs' |
| 4 | declare module 'sanitize-html' { |
| 5 | interface IOptions { |
| 6 | allowedTags?: string[] |
| 7 | allowedAttributes?: Record<string, string[]> |
| 8 | allowedSchemes?: string[] |
| 9 | allowedSchemesByTag?: Record<string, string[]> |
| 10 | allowProtocolRelative?: boolean |
| 11 | } |
| 12 | |
| 13 | function sanitizeHtml(dirty: string, options?: IOptions): string |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected