diff --git a/types/passport-jwt/index.d.ts b/types/passport-jwt/index.d.ts
index c300276fe2..0a71c4b725 100644
--- a/types/passport-jwt/index.d.ts
+++ b/types/passport-jwt/index.d.ts
@@ -4,11 +4,13 @@
// Alex Young
// David Ng
// Carlos Eduardo Scheffer
+// Byungjin Kim
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import { Strategy as PassportStrategy } from 'passport-strategy';
import {Request} from 'express';
+import { VerifyOptions } from 'jsonwebtoken'
export declare class Strategy extends PassportStrategy {
constructor(opt: StrategyOptions, verify: VerifyCallback);
@@ -24,6 +26,7 @@ export interface StrategyOptions {
algorithms?: string[];
ignoreExpiration?: boolean;
passReqToCallback?: boolean;
+ jsonWebTokenOptions?: VerifyOptions;
}
export interface VerifyCallback {