Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Will Johnston
2015-04-13 18:29:19 -05:00
163 changed files with 24600 additions and 6439 deletions
+2
View File
@@ -13,6 +13,7 @@ declare module 'passport-local' {
interface IStrategyOptions {
usernameField?: string;
passwordField?: string;
passReqToCallback?: boolean;
}
interface IStrategyOptionsWithRequest {
@@ -30,6 +31,7 @@ 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;
}