UNPKG

boil-cli-tool

Version:

CLI tool - boilerplate template manager and generator

12 lines (11 loc) 216 B
export interface Arg { name?: string; shorthand?: string; description?: string; default?: string; options?: string[]; value?: string; } export interface ArgsObject { [key: string]: Arg; }