(schema: JSONSchema7)
| 1427 | const sortedNames = (names: Iterable<string> | undefined): string[] => |
| 1428 | [...(names ?? [])].sort(); |
| 1429 | const schemaPropertyNames = (schema: JSONSchema7): string[] => |
| 1430 | sortedNames(Object.keys(schema.properties ?? {})); |
| 1431 | const shouldPreferMethodParamSchema = ( |
| 1432 | typeName: string, |
| 1433 | paramsSchema: JSONSchema7, |
no test coverage detected
searching dependent graphs…