UNPKG

@sphereon/ssi-sdk.ebsi-authorization-client

Version:

<!--suppress HtmlDeprecatedAttribute --> <h1 align="center"> <br> <a href="https://www.sphereon.com"><img src="https://sphereon.com/content/themes/sphereon/assets/img/logo.svg" alt="Sphereon" width="400"></a> <br>EBSI Authorization Client (Typescrip

20 lines 642 B
import { ebsiCreateAttestationAuthRequestURL } from '../functions'; export class EBSIAttestationService { credentialIssuer; idOpts; clientId; constructor(args) { this.credentialIssuer = args.credentialIssuer; this.idOpts = args.idOpts; this.clientId = args.clientId; } createAttestationRequestAuthURL(opts, context) { return ebsiCreateAttestationAuthRequestURL({ credentialIssuer: this.credentialIssuer, idOpts: this.idOpts, clientId: this.clientId, ...opts, }, context); } } //# sourceMappingURL=EBSIAttestationService.js.map