@azure/storage-file-datalake
Version:
Microsoft Azure Storage SDK for JavaScript - DataLake
20 lines • 868 B
TypeScript
import * as coreHttpCompat from "@azure/core-http-compat";
import { Service, FileSystemOperations, PathOperations } from "./operationsInterfaces/index.js";
import { StorageClientOptionalParams } from "./models/index.js";
export declare class StorageClient extends coreHttpCompat.ExtendedServiceClient {
url: string;
version: string;
resource: string;
xMsLeaseDuration?: number;
/**
* Initializes a new instance of the StorageClient class.
* @param url The URL of the service account, container, or blob that is the target of the desired
* operation.
* @param options The parameter options
*/
constructor(url: string, options?: StorageClientOptionalParams);
service: Service;
fileSystemOperations: FileSystemOperations;
pathOperations: PathOperations;
}
//# sourceMappingURL=storageClient.d.ts.map