@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
18 lines • 858 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 });
const HubInterface_1 = require("./HubInterface");
/**
* A Class that does CRUD operations for storing objects as Profile in the Hub.
*/
class Profile extends HubInterface_1.default {
constructor(hubInterfaceOptions) {
hubInterfaceOptions.hubInterface = HubInterface_1.HubInterfaceType.Profile;
super(hubInterfaceOptions);
}
}
exports.default = Profile;
//# sourceMappingURL=Profile.js.map