Skip to main content
Module

x/jose/types.i.d.ts

"JSON Web Almost Everything" - JWA, JWS, JWE, JWT, JWK, JWKS with no dependencies using runtime's native crypto in Node.js, Browser, Cloudflare Workers, Electron, and Deno.
Extremely Popular
Go to Latest
File
export type Awaited<T> = T extends PromiseLike<infer PT> ? PT : neverexport type AsyncOrSync<T> = PromiseLike<T> | T
export interface JWEKeyManagementHeaderResults { apu?: string apv?: string epk?: { x?: string; y?: string; crv?: string; kty?: string } iv?: string p2c?: number p2s?: string tag?: string [propName: string]: unknown}