import { OpenAPIObject, OperationObject, ResponsesObject } from './open-api-spec.interface'; export interface DenormalizedDoc extends Partial { root?: { method: string; path: string; } & OperationObject; responses?: ResponsesObject; }