diff --git a/plugins/auth-backend-module-auth0-provider/src/types.d.ts b/plugins/auth-backend-module-auth0-provider/src/types.d.ts index f0efc49347..8d4d182728 100644 --- a/plugins/auth-backend-module-auth0-provider/src/types.d.ts +++ b/plugins/auth-backend-module-auth0-provider/src/types.d.ts @@ -18,7 +18,7 @@ declare module 'passport-auth0' { import passport from 'passport'; import express from 'express'; - declare class StrategyInternal extends passport.Strategy { + class StrategyInternal extends passport.Strategy { constructor( options: StrategyInternal.StrategyOptionWithRequest, verify: StrategyInternal.VerifyFunctionWithRequest, @@ -33,7 +33,7 @@ declare module 'passport-auth0' { authorizationParams(options: Record): Record; } - declare namespace StrategyInternal { + namespace StrategyInternal { interface Profile extends passport.Profile { id: string; displayName: string;