UNPKG

ng-openapi-gen

Version:

An OpenAPI 3.0 and 3.1 codegen for Angular 16+

13 lines (12 loc) 345 B
import { Options } from './options'; /** * Represents a possible enumerated value */ export declare class EnumValue { type: string; options: Options; name: string; value: string; description: string; constructor(type: string, name: string | undefined, description: string | undefined, _value: any, options: Options); }