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

JWK

interface JWK {
[key: string]: any;
alg?: string;
key_ops: string[];
kid?: string;
kty: "RSA" | "EC" | "oct";
}

§Index Signatures

§
[key: string]: any

§Properties

§
alg?: string
[src]
§
key_ops: string[]
[src]
§
kid?: string
[src]
§
kty: "RSA" | "EC" | "oct"
[src]