@azure/storage-file-share
Version:
Microsoft Azure Storage SDK for JavaScript - File
17 lines • 558 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { StorageClient } from "./StorageClient.js";
/**
* ShareClientInternal is the thin wrapper for Share which contains internal helper methods.
*/
export class ShareClientInternal extends StorageClient {
context;
constructor(url, pipeline) {
super(url, pipeline);
this.context = this.storageClientContext.share;
}
async restore(options = {}) {
return this.context.restore(options);
}
}
//# sourceMappingURL=ShareClientInternal.js.map