/** * JSON Web Key * RFC 7638 */ export type JWK = { alg: string; kty: string; crv: string; 'x': string; 'y': string; };