@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
22 lines • 823 B
JavaScript
;
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License in the project root for license information.
*--------------------------------------------------------------------------------------------*/
Object.defineProperty(exports, "__esModule", { value: true });
class HubClientMock {
constructor() { }
async commit(commit) {
console.log(commit);
return commit;
}
async queryObjects(obj) {
return obj;
}
async queryObject(queryRequest, hubObject) {
console.log(queryRequest);
return hubObject;
}
}
exports.default = HubClientMock;
//# sourceMappingURL=HubClientMock.js.map