ng-openapi-gen
Version:
An OpenAPI 3.0 and 3.1 codegen for Angular 16+
27 lines (26 loc) • 517 B
TypeScript
import { SecuritySchemeObject } from './openapi-typings';
/**
* 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[]);
}