chore: fix types

Signed-off-by: Jack Palmer <jackpalmer@spotify.com>
This commit is contained in:
Jack Palmer
2026-01-23 11:33:26 +00:00
parent 59c06a215e
commit 29ddd3cf43
+2 -2
View File
@@ -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<string, any>): Record<string, any>;
}
declare namespace StrategyInternal {
namespace StrategyInternal {
interface Profile extends passport.Profile {
id: string;
displayName: string;