@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
18 lines • 877 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 Collections in the Hub
*/
class Collections extends HubInterface_1.default {
constructor(hubInterfaceOptions) {
hubInterfaceOptions.hubInterface = HubInterface_1.HubInterfaceType.Collections;
super(hubInterfaceOptions);
}
}
exports.default = Collections;
//# sourceMappingURL=Collections.js.map