UNPKG

@glamtime/oauth-oidc-client

Version:

Secure your Angular app using the latest standards for OpenID Connect & OAuth2. Provides support for token refresh, all modern OIDC Identity Providers and more.

13 lines (12 loc) 191 B
export interface JwtKey { kty: string; use: string; kid: string; x5t: string; e: string; n: string; x5c: any[]; } export interface JwtKeys { keys: JwtKey[]; }