storybook/lib/core-client/typings.d.ts
2021-02-04 01:19:26 +08:00

7 lines
146 B
TypeScript

declare module 'ansi-to-html';
declare class AnsiToHtml {
constructor(options: { escapeHtml: boolean });
toHtml: (ansi: string) => string;
}