@storybook/cli
Version:
Storybook's CLI - easiest method of adding storybook to your projects
17 lines (16 loc) • 449 B
TypeScript
import { Package } from 'update-notifier';
import { Builder } from './project_types';
declare type CommandOptions = {
useNpm?: boolean;
type?: any;
force?: any;
html?: boolean;
skipInstall?: boolean;
parser?: string;
yes?: boolean;
builder?: Builder;
linkable?: boolean;
commonJs?: boolean;
};
export declare function initiate(options: CommandOptions, pkg: Package): Promise<void>;
export {};