UNPKG

ng-openapi-gen

Version:

An OpenAPI 3.0 and 3.1 codegen for Angular 16+

13 lines (12 loc) 332 B
import { Content } from './content'; import { Options } from './options'; /** * An operation response */ export declare class Response { statusCode: string; description: string; content: Content[]; options: Options; constructor(statusCode: string, description: string, content: Content[], options: Options); }