From 3867a287ad795b5b5dff8b363e0e3ab4f8c74d99 Mon Sep 17 00:00:00 2001 From: Kamil Mysliwiec Date: Wed, 4 Nov 2020 10:11:16 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c95ac94b..3dc1c748 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,7 @@ The asynchronous `.sign()` method. #### jwtService.verify\(token: string, options?: JwtVerifyOptions): T -The verify method is an implementation of jsonwebtoken `.verify()`. Differing from jsonwebtoken it also allows an additional `secret, privateKey, publicKey` property on `options` to override the secret passed in from the module. It only overrides the `secret`, `publicKey` or `privateKey` though not a `secretOrKeyProvider`. +The verify method is an implementation of jsonwebtoken `.verify()`. Differing from jsonwebtoken it also allows an additional `secret`, `privateKey`, and `publicKey` properties on `options` to override options passed in from the module. It only overrides the `secret`, `publicKey` or `privateKey` though not a `secretOrKeyProvider`. #### jwtService.verifyAsync\(token: string, options?: JwtVerifyOptions): Promise\