-
-
Notifications
You must be signed in to change notification settings - Fork 153
Closed
Labels
Description
Hi,
Currently, the flags.type possible values are documented as string, boolean, and number:
Line 11 in 5975fe6
| - `type`: Type of value. (Possible values: `string` `boolean` `number`) |
Also on README:
https://github.com/sindresorhus/meow#flags
But the actual values by minimist-options include also array:
export type OptionType = 'string' | 'boolean' | 'number' | 'array';Do these descriptions about flags.type need to include array?