UNPKG

redoc

Version:
15 lines (14 loc) 412 B
import * as React from 'react'; import { SecuritySchemesModel } from '../../services'; export declare const AUTH_TYPES: { oauth2: string; apiKey: string; http: string; openIdConnect: string; }; export interface SecurityDefsProps { securitySchemes: SecuritySchemesModel; } export declare class SecurityDefs extends React.PureComponent<SecurityDefsProps> { render(): React.JSX.Element[]; }