UNPKG

278 BTypeScriptView Raw
1import { OpenAPIObject, OperationObject, ResponsesObject } from './open-api-spec.interface';
2export interface DenormalizedDoc extends Partial<OpenAPIObject> {
3 root?: {
4 method: string;
5 path: string;
6 } & OperationObject;
7 responses?: ResponsesObject;
8}