Skip to content

Commit

Permalink
Add missing trailing comma from VerifyOptions type in jsonwebtoken de…
Browse files Browse the repository at this point in the history
…finition (#4223)

Co-authored-by: Guy Thouret <guy.thouret@flgtechnology.co.uk>
  • Loading branch information
gthouret and gthouret committed Jan 5, 2022
1 parent 1e00997 commit 36c4bdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -59,7 +59,7 @@ declare module "jsonwebtoken" {
subject: string | string[],
clockTolerance: number,
maxAge: string | number,
clockTimestamp: number
clockTimestamp: number,
nonce?: string,
}>;

Expand Down
Expand Up @@ -59,7 +59,7 @@ declare module "jsonwebtoken" {
subject: string | string[],
clockTolerance: number,
maxAge: string | number,
clockTimestamp: number
clockTimestamp: number,
nonce?: string,
/** return an object with the decoded `{ payload, header, signature }` instead of only the usual content of the payload. */
complete?: boolean,
Expand Down

0 comments on commit 36c4bdf

Please sign in to comment.