Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RequiredClaims

type RequiredClaims = {
iss: string;
sub: string;
aud: string | string[];
exp: number;
iat: number;
role: string;
session_id: string;
}
;

§Type

§
{
iss: string;
sub: string;
aud: string | string[];
exp: number;
iat: number;
role: string;
session_id: string;
}
[src]