(names: Iterable<string> | undefined)
| 1425 | const allMethods = methodEntries.map(({ method }) => method); |
| 1426 | const inlineMethodParamSchemas = new Map<string, 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 = ( |
no outgoing calls
no test coverage detected
searching dependent graphs…