Merge pull request #3196 from wokim/master

added missing type hints
This commit is contained in:
Masahiro Wakame
2014-11-21 21:06:36 +09:00
+2 -1
View File
@@ -15,6 +15,7 @@ declare module "express-jwt" {
module jwt {
export interface Options {
secret: string;
userProperty?: string;
skip?: string[];
credentialsRequired?: boolean;
}
@@ -23,4 +24,4 @@ declare module "express-jwt" {
}
}
export = jwt;
}
}