(fields: CommandFieldMap)
| 239 | } |
| 240 | |
| 241 | export function fieldsInputSchema(fields: CommandFieldMap): JsonSchema { |
| 242 | return commandInputSchema(fieldProperties(fields), requiredFieldNames(fields)); |
| 243 | } |
| 244 | |
| 245 | export function readFieldInput<TFields extends CommandFieldMap>( |
| 246 | input: unknown, |
no test coverage detected
searching dependent graphs…