From 29ddd3cf43929aafda99eec612157f1fd1aa90b7 Mon Sep 17 00:00:00 2001 From: Jack Palmer Date: Fri, 23 Jan 2026 11:33:26 +0000 Subject: [PATCH] chore: fix types Signed-off-by: Jack Palmer --- plugins/auth-backend-module-auth0-provider/src/types.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;