@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
22 lines (21 loc) • 590 B
TypeScript
import ServiceEndpoint from "./ServiceEndpoint";
/**
* class to represent a host service endpoint.
*/
export default class HostServiceEndpoint extends ServiceEndpoint {
/**
* locations of the hubs.
*/
locations: string[];
constructor(context: string, locations: 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): HostServiceEndpoint;
}