(description?: string)
| 158 | } |
| 159 | |
| 160 | export function numberField(description?: string): CommandField<number> { |
| 161 | return optionalField(numberSchema(description), optionalNumberValue); |
| 162 | } |
| 163 | |
| 164 | export function integerField( |
| 165 | description?: string, |
no test coverage detected