@azure/data-tables
Version:
An isomorphic client library for the Azure Tables service.
11 lines • 786 B
TypeScript
import type { ClientParamsFromConnectionString, ConnectionString } from "./internalModels.js";
import type { TableServiceClientOptions } from "../index.js";
/**
* Gets client parameters from an Account Connection String
* Only supported in Node.js not supported for Browsers
* @param extractedCreds - parsed connection string
* @param options - TablesServiceClient options
*/
export declare function fromAccountConnectionString(extractedCreds: ConnectionString, options?: TableServiceClientOptions): ClientParamsFromConnectionString;
export declare function getAccountConnectionString(accountName: string, accountKey: string, defaultEndpointsProtocol: string, endpointSuffix?: string, tableEndpoint?: string): ConnectionString;
//# sourceMappingURL=accountConnectionString.d.ts.map