@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
22 lines (21 loc) • 586 B
TypeScript
import ServiceEndpoint from "./ServiceEndpoint";
/**
* Class to represent a host service endpoint.
*/
export default class UserServiceEndpoint extends ServiceEndpoint {
/**
* locations of the hubs.
*/
instances: string[];
constructor(context: string, instances: string[]);
/**
* Used to control the the properties that are
* output by JSON.stringify.
*/
toJSON(): any;
/**
* Used to control the the properties that are
* output by JSON.parse.
*/
static fromJSON(object: any): ServiceEndpoint;
}