UNPKG

@azure/storage-file-share

Version:
17 lines 558 B
// 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