(message: string, options?: IntegerInputOptions<number>)
| 141 | * which may be empty (unless a validation function is specified which disallows it). |
| 142 | */ |
| 143 | export const integerInput = async (message: string, options?: IntegerInputOptions<number>): Promise<number> => |
| 144 | await internalIntegerInput(message, { ...options, required: true }) as number |
| 145 | |
| 146 | |
| 147 | export type NumberInputOptions = { |
no test coverage detected