@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
22 lines • 853 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 });
/**
* Represents the response to a `HubWriteRequest`.
*/
class HubWriteResponse {
constructor(response) {
this.response = response;
}
/**
* Returns the list of known revisions for the object which was created/modified.
*/
getRevisions() {
return this.response.revisions;
}
}
exports.default = HubWriteResponse;
//# sourceMappingURL=HubWriteResponse.js.map