UNPKG

jupyterlab-emrys

Version:

A computational environment for Jupyter. Powered by Emrys

11 lines (10 loc) 247 B
export interface ISanitizer { /** * Sanitize an HTML string. */ sanitize(dirty: string): string; } /** * The default instance of an `ISanitizer` meant for use by user code. */ export declare const defaultSanitizer: ISanitizer;