removing unnecessary definition

This commit is contained in:
Will Johnston
2015-04-13 18:37:09 -05:00
parent 86de365035
commit 67e09fcdb1

View File

@@ -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;
}