( message: string, options?: StringInputOptions )
| 69 | default?: DefaultValueOrFn<string | undefined> |
| 70 | } |
| 71 | export const stringInput = async ( message: string, options?: StringInputOptions ): Promise<string> => |
| 72 | internalStringInput(message, { ...options, required: true }) |
| 73 | |
| 74 | export type IntegerInputOptions<T extends number | undefined> = { |
| 75 | default?: DefaultValueOrFn<T> |
no test coverage detected