UNPKG

ng-openapi-gen

Version:

An OpenAPI 3.0 and 3.1 codegen for Angular 16+

14 lines (13 loc) 410 B
import { MediaTypeObject, OpenAPIObject } from './openapi-typings'; import { Options } from './options'; /** * Either a request body or response content */ export declare class Content { mediaType: string; spec: MediaTypeObject; options: Options; openApi: OpenAPIObject; type: string; constructor(mediaType: string, spec: MediaTypeObject, options: Options, openApi: OpenAPIObject); }