Add missing attributes to VerifyOptions

This commit is contained in:
Martin Helmich
2015-12-01 16:09:47 +01:00
parent 7a3d694403
commit 5e14a5854d
+2
View File
@@ -36,8 +36,10 @@ declare module "jsonwebtoken" {
}
export interface VerifyOptions {
algorithms?: string[];
audience?: string;
issuer?: string;
ignoreExpiration?: boolean;
maxAge?: string;
}