ng-openapi-gen
Version:
An OpenAPI 3 codegen for Angular 12+
13 lines (12 loc) • 345 B
TypeScript
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);
}