@storybook/cli
Version:
Storybook's CLI - easiest method of adding storybook to your projects
13 lines (12 loc) • 407 B
TypeScript
import { SupportedFrameworks } from './project_types';
interface ReproOptions {
outputDirectory: string;
framework?: SupportedFrameworks;
list?: boolean;
template?: string;
e2e?: boolean;
generator?: string;
pnp?: boolean;
}
export declare const repro: ({ outputDirectory, list, template, framework, generator, e2e, pnp, }: ReproOptions) => Promise<void>;
export {};