@wcauchois/program-builder > ProgramBuilder > intFlag
ProgramBuilder.intFlag() method
Add an optional valued flag to the program.
Signature:intFlag<K extends string>(name: string, options: INullableValuedFlagOptions<K, number>): ExtendProgramBuilderWithOptional<T, K, number>;
Parameters
Parameter | Type | Description |
---|---|---|
name |
| The name for the flag, including leading dashes. Multiple alternative names may be specified by separating them within the string by commas. For example, "-i,--input". |
options | INullableValuedFlagOptions<K, number> | See INullableValuedFlagOptions. |
ExtendProgramBuilderWithOptional<T, K, number>