/** * Type definitions for the OpenAPI specification 2.0 (Swagger). * * NOTE: We do not really care about OpenAPI specification 2.0 / Swagger, as we * translate it to Oas3 immediately anyways. */ export type Oas2 = { swagger: string; [key: string]: any; };