// @ts-expect-error ansi-html-community is not typed import ansiHTML from 'ansi-html-community'; import {escapeHTML} from './escape-html'; export function ansiHtml(ansi: string): string { return ansiHTML(escapeHTML(ansi)); }