mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
declare module 'ansi-to-html';
|
|
declare module '@storybook/preview-web/dist/cjs/PreviewWeb.mockdata';
|
|
|
|
declare class AnsiToHtml {
|
|
constructor(options: { escapeHtml: boolean });
|
|
|
|
toHtml: (ansi: string) => string;
|
|
}
|