Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesPull RequestsActionsSecurityInsightsSettings
✨ AI
More
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.

sanitize-html.d.tsBlame12 lines · 1 contributor
8ed88f2ccantynz-alt1// 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).
4declare 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}