(schema: JsonSchema, read: FieldReader<T>)
| 523 | } |
| 524 | |
| 525 | function optionalField<T>(schema: JsonSchema, read: FieldReader<T>): CommandField<T> { |
| 526 | return { schema, required: false, read }; |
| 527 | } |
| 528 | |
| 529 | function integerSchemaWithBounds( |
| 530 | description: string | undefined, |
no outgoing calls
no test coverage detected
searching dependent graphs…