Type Alias IDPJWTAuth

IDPJWTAuth: BaseIDP & {
    options?: {
        issuer?: string;
        staticKeys?: { kid?: string; pem?: string }[];
    };
}

An identity provider for JWT authentication.