added missing type hints

This commit is contained in:
wokim 2014-11-21 20:52:56 +09:00
parent b80f7caacf
commit 5d9d1fe598

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