UNPKG

remix-nlux

Version:

Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.

7 lines (6 loc) 252 B
/** * A type representing a function to use as HTML sanitizer. * This type can be passed to markdown parser, to be used to sanitize generated * HTML before appending it to the document. */ export type SanitizerExtension = (html: string) => string;