UNPKG

146 BTypeScriptView Raw
1declare module 'ansi-to-html';
2declare class AnsiToHtml {
3 constructor(options: { escapeHtml: boolean });
4
5 toHtml: (ansi: string) => string;
6}