UNPKG

cmd-args-parser

Version:

Command line arguments parser like Angular CLI 😃

9 lines (8 loc) • 244 B
export interface Directive { alias: string; name: string; flags?: string[]; input?: boolean; children?: Directive[]; } export default function Parser<Result = any>(directives: Directive[], context?: string): Result;