(description?: string)
| 154 | } |
| 155 | |
| 156 | export function stringField(description?: string): CommandField<string> { |
| 157 | return optionalField(stringSchema(description), optionalString); |
| 158 | } |
| 159 | |
| 160 | export function numberField(description?: string): CommandField<number> { |
| 161 | return optionalField(numberSchema(description), optionalNumberValue); |
no test coverage detected
searching dependent graphs…