UNPKG

parse-openapi

Version:

OpenAPI v3 parser

4 lines (3 loc) 290 B
import type { Operation, OperationParameters } from '../types'; import type { OpenApi, OpenApiOperation } from '../OpenApi'; export declare const getOperation: (openApi: OpenApi, url: string, method: string, tag: string, op: OpenApiOperation, pathParams: OperationParameters) => Operation;