(fields: CommandFieldMap)
| 542 | } |
| 543 | |
| 544 | function requiredFieldNames(fields: CommandFieldMap): string[] { |
| 545 | return Object.entries(fields).flatMap(([key, field]) => (field.required ? [key] : [])); |
| 546 | } |
| 547 | |
| 548 | function optionalRecord( |
| 549 | record: Record<string, unknown>, |
no outgoing calls
no test coverage detected
searching dependent graphs…