From af4f8b93c5245e577ebc85b43247f13abc2e0fde Mon Sep 17 00:00:00 2001 From: Josh Uvi Date: Wed, 15 Nov 2023 16:02:45 +0000 Subject: [PATCH] fix types issue Signed-off-by: Josh Uvi --- .../src/types.d.ts | 28 ------------------- 1 file changed, 28 deletions(-) diff --git a/plugins/auth-backend-module-okta-provider/src/types.d.ts b/plugins/auth-backend-module-okta-provider/src/types.d.ts index 0bca00ea61..58cfb74173 100644 --- a/plugins/auth-backend-module-okta-provider/src/types.d.ts +++ b/plugins/auth-backend-module-okta-provider/src/types.d.ts @@ -23,31 +23,3 @@ declare module 'passport-okta2' { authenticate(this: StrategyCreated, req: Request, options?: any): any; } } - -declare module 'passport-onelogin-oauth' { - import { Request } from 'express'; - import { StrategyCreated } from 'passport'; - - export class Strategy { - constructor(options: any, verify: any); - authenticate(this: StrategyCreated, req: Request, options?: any): any; - } -} -declare module 'passport-bitbucket-oauth2' { - import { Request } from 'express'; - import { StrategyCreated } from 'passport'; - - export class Strategy { - constructor(options: any, verify: any); - authenticate(this: StrategyCreated, req: Request, options?: any): any; - } -} -declare module 'passport-gitlab2' { - import { Request } from 'express'; - import { StrategyCreated } from 'passport'; - - export class Strategy { - constructor(options: any, verify: any); - authenticate(this: StrategyCreated, req: Request, options?: any): any; - } -}