CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
1 2 3 4 5 6 7 8 9 10 11 12 | // No @types/sanitize-html package exists on the registry; minimal ambient
// declaration covering the surface src/lib/markdown.ts actually uses
// (the default sanitize function + the IOptions bag passed to it).
declare module "sanitize-html" {
namespace sanitizeHtml {
interface IOptions {
[key: string]: any;
}
}
function sanitizeHtml(html: string, options?: sanitizeHtml.IOptions): string;
export = sanitizeHtml;
}
|