diff --git a/passport-local/passport-local.d.ts b/passport-local/passport-local.d.ts index 2fc62dc7bf..34fca8194e 100644 --- a/passport-local/passport-local.d.ts +++ b/passport-local/passport-local.d.ts @@ -31,7 +31,6 @@ declare module 'passport-local' { } interface VerifyFunction { - (req: express.Request, username: string, password: string, done: (error: any, user?: any, options?: IVerifyOptions) => void): void; (username: string, password: string, done: (error: any, user?: any, options?: IVerifyOptions) => void): void; }