JwtHeader

import type { JwtHeader } from "https://esm.sh/@supabase/[email protected]/dist/index.d.mts";
type JwtHeader = {
alg:
| "RS256"
| "ES256"
| "HS256"
| (string & {});
kid: string;
typ: string;
}
;

§Type

§
{
alg:
| "RS256"
| "ES256"
| "HS256"
| (string & {});
kid: string;
typ: string;
}
[src]