UNPKG

482 BTypeScriptView Raw
1import { Package } from 'update-notifier';
2import { Builder } from './project_types';
3declare type CommandOptions = {
4 useNpm?: boolean;
5 type?: any;
6 force?: any;
7 html?: boolean;
8 skipInstall?: boolean;
9 parser?: string;
10 yes?: boolean;
11 builder?: Builder;
12 linkable?: boolean;
13 commonJs?: boolean;
14 disableTelemetry?: boolean;
15};
16export declare function initiate(options: CommandOptions, pkg: Package): Promise<void>;
17export {};