( message: string, options?: NumberInputOptions, )
| 194 | } |
| 195 | |
| 196 | export const optionalNumberInput = async ( |
| 197 | message: string, |
| 198 | options?: NumberInputOptions, |
| 199 | ): Promise<number | undefined> => |
| 200 | internalNumberInput(message, { ...options, required: false }) |
| 201 | |
| 202 | export const numberInput = async ( |
| 203 | message: string, |