UNPKG

openapi-to-graphql-nullable

Version:

Fork of openapi-to-graphql that fixes nullable handling. Published to NPM since there's no other easy way to consume a Lerna package. Unmaintained.

11 lines (10 loc) 278 B
/** * 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 declare type Oas2 = { swagger: string; [key: string]: any; };