UNPKG

@voidkey/broker-core

Version:

Core credential minting logic for the voidkey zero-trust credential broker

22 lines 496 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IdpProvider = void 0; class IdpProvider { constructor(config) { this.config = config; } getName() { return this.config.name; } getIssuer() { return this.config.issuer; } getAudience() { return this.config.audience; } getJwksUri() { return this.config.jwksUri; } } exports.IdpProvider = IdpProvider; //# sourceMappingURL=base.js.map