UNPKG

dino-express

Version:

DinO enabled REST framework based on express

8 lines (7 loc) 480 B
import { type SecurityDefinition } from '../middlewares/impl/before/SecurityMiddleware'; import { type AuthType } from './AbstractSecurityValidationHandler'; import { ApiKeySecurityValidationHandler } from './ApiKeySecurityValidationHandler'; export declare abstract class OAuth2SecurityValidationHandler extends ApiKeySecurityValidationHandler { abstract validateOpenIdConnectAuth(token: string, config: SecurityDefinition): boolean; protected getAuthType(): AuthType; }