@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
18 lines • 800 B
JavaScript
;
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
Object.defineProperty(exports, "__esModule", { value: true });
/**
* abstract class to represent a service endpoint.
* based on: https://github.com/decentralized-identity/identity-hub/blob/master/explainer.md.
*/
class ServiceEndpoint {
constructor(context, type) {
this.context = context;
this.type = type;
}
}
exports.default = ServiceEndpoint;
//# sourceMappingURL=ServiceEndpoint.js.map