UNPKG

282 BTypeScriptView Raw
1import { CliCommandType, CliProgramType } from './CliTypes';
2export declare type CliConfigType = Partial<{
3 bin: string;
4 title: string;
5 subtitle: string;
6 fallbackToken: string;
7 defaultProgramName: string;
8 commands: Array<CliProgramType | CliCommandType>;
9}>;