UNPKG

parsemate

Version:

A tool for building easy argv parsing in app, coupled with a "--help" me generator

8 lines (7 loc) 140 B
export type ArgSpec = { flags: string[]; description: string; required?: boolean; multiple?: boolean; default?: any; };