UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

16 lines (15 loc) 424 B
/** * abstract class to represent a service endpoint. * based on: https://github.com/decentralized-identity/identity-hub/blob/master/explainer.md. */ export default abstract class ServiceEndpoint { /** * The context of the service reference. */ context: string; /** * The type of the service reference. */ type: string; constructor(context: string, type: string); }