UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

11 lines 248 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ export type SwaggerAPIModel = { swagger: '2.0'; paths: PathModel; }; export type PathModel = { [kind: string]: never; }; //# sourceMappingURL=swagger-api.model.d.ts.map