@storybook/cli
Version:
Storybook's CLI - easiest method of adding storybook to your projects
16 lines (15 loc) • 419 B
TypeScript
import { ConfigFile } from '@storybook/csf-tools';
import { Fix } from '../types';
interface EslintPluginRunOptions {
main: ConfigFile;
eslintFile: string;
unsupportedExtension?: string;
}
/**
* Does the user not have eslint-plugin-storybook installed?
*
* If so:
* - Install it, and if possible configure it
*/
export declare const eslintPlugin: Fix<EslintPluginRunOptions>;
export {};