| 18 | type SchemaOrRef = SchemaObject | ReferenceObject; |
| 19 | |
| 20 | export class DefaultSpecProcessor implements ISpecProcessor { |
| 21 | async process(spec: OpenAPIV3.Document): Promise<OpenAPIV3.Document> { |
| 22 | // First dereference all $refs |
| 23 | const dereferencedSpec = (await $RefParser.dereference(spec, { |
nothing calls this directly
no outgoing calls
no test coverage detected