ng-openapi-gen
Version:
An OpenAPI 3 codegen for Angular 12+
28 lines (27 loc) • 604 B
TypeScript
import { OpenAPIObject, SecuritySchemeObject } from 'openapi3-ts';
import { Options } from './options';
/**
* An operation security
*/
export declare class Security {
spec: SecuritySchemeObject;
scope: string[];
/**
* variable name
*/
var: string;
/**
* Header Name
*/
name: string;
/**
* Property Description
*/
tsComments: string;
/**
* Location of security parameter
*/
in: string;
type: string;
constructor(key: string, spec: SecuritySchemeObject, scope: string[], options: Options, openApi: OpenAPIObject);
}