@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
16 lines (15 loc) • 424 B
TypeScript
/**
* 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);
}