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

Header

import type { Header } from "https://raw.githubusercontent.com/timonson/djwt/master/mod.ts";

JWS §4.1.1: The "alg" value is a case-sensitive ASCII string containing a StringOrURI value. This Header Parameter MUST be present and MUST be understood and processed by implementations.

interface Header {
[key: string]: unknown;
alg: Algorithm;
}

§Index Signatures

§
[key: string]: unknown

§Properties