@itwin/object-storage-s3
Version:
Object storage implementation base for S3 compatible providers
18 lines • 675 B
JavaScript
;
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.StsWrapper = void 0;
class StsWrapper {
_client;
constructor(_client) {
this._client = _client;
}
get client() {
return this._client;
}
}
exports.StsWrapper = StsWrapper;
//# sourceMappingURL=StsWrapper.js.map