UNPKG

@aws-amplify/amplify-cli-shared-interfaces

Version:

API interfaces to be shared across different amplfy-cli packages

14 lines (13 loc) 276 B
/** CLI Input */ /** * Input parameters provided as part of the amplify command walk-through */ export interface ICommandInput { argv: Array<string>; plugin?: string; command: string; subCommands?: string[]; options?: { [key: string]: string | boolean; }; }