Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/dtils/deps.ts>jwtCore.VerifyOptions

The best unofficial library of utilities for Deno applications
Go to Latest
type alias jwtCore.VerifyOptions
import { type jwtCore } from "https://deno.land/x/dtils@2.5.0/deps.ts";
const { VerifyOptions } = jwtCore;

With expLeeway and nbfLeeway implementers may provide for some small leeway to account for clock skew (JWT §4.1.4). The default is 1 second. By passing the option audience, this application tries to identify the recipient with a value in the aud claim. If the values don't match, an Error is thrown.

definition: { expLeeway?: number; nbfLeeway?: number; audience?: string | string[] | RegExp; }