UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

10 lines (8 loc) 270 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ import { PathModel } from "./swagger-api.model.js"; export type OpenAPIModel = { openapi: '3.0.0' | '3.0.1' | '3.0.2'; paths: PathModel; //reused from swagger model for the required use case }