Skip to content

OidcJwks

@tsed/oidc-provider

Usage

typescript
import { OidcJwks } from "@tsed/oidc-provider";

See /packages/security/oidc-provider/src/types/services/OidcJwks.ts.

Overview

ts
class OidcJwks {
    jwksPath: string;
    certificates?: JwksKeyParameters[];
    keys: string;
    $onInit(): any;
    getJwks(): any;
}

jwksPath

ts
jwksPath: string;

certificates

ts
certificates?: JwksKeyParameters[];

keys

ts
keys: string;

$onInit

ts
$onInit(): any;

getJwks

ts
getJwks(): any;

Released under the MIT License.