UNPKG

@unvision/jose

Version:

Implementation of the RFCs of the JOSE Working Group.

11 lines (10 loc) 277 B
import { JsonWebKeyParameters } from '../jwk/jsonwebkey.parameters'; /** * Parameters of the JSON Web Key Set. */ export interface JsonWebKeySetParameters { /** * JSON Web Keys registered at the JSON Web Key Set. */ readonly keys: JsonWebKeyParameters[]; }