From 5e14a5854d4e94c69657432155cc45b23585a096 Mon Sep 17 00:00:00 2001 From: Martin Helmich Date: Tue, 1 Dec 2015 16:09:47 +0100 Subject: [PATCH] Add missing attributes to VerifyOptions --- jsonwebtoken/jsonwebtoken.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jsonwebtoken/jsonwebtoken.d.ts b/jsonwebtoken/jsonwebtoken.d.ts index bb74aa853..b558df2e5 100644 --- a/jsonwebtoken/jsonwebtoken.d.ts +++ b/jsonwebtoken/jsonwebtoken.d.ts @@ -36,8 +36,10 @@ declare module "jsonwebtoken" { } export interface VerifyOptions { + algorithms?: string[]; audience?: string; issuer?: string; + ignoreExpiration?: boolean; maxAge?: string; }