{"version":3,"file":"accountConnectionString-browser.mjs","sourceRoot":"","sources":["../../../src/utils/accountConnectionString-browser.mts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAKlC;;;;;GAKG;AACH,+HAA+H;AAC/H,MAAM,UAAU,2BAA2B,CACzC,iBAAmC,EACnC,QAAoC;IAEpC,MAAM,IAAI,KAAK,CAAC,oEAAoE,CAAC,CAAC;AACxF,CAAC;AAED,MAAM,UAAU,0BAA0B,CACxC,YAAoB,EACpB,WAAmB,EACnB,yBAAiC,EACjC,eAAwB,EACxB,cAAuB;IAEvB,MAAM,IAAI,KAAK,CAAC,oEAAoE,CAAC,CAAC;AACxF,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { ConnectionString } from \"./internalModels.js\";\nimport type { TableServiceClientOptions } from \"../index.js\";\n\n/**\n * Gets client parameters from an Account Connection String\n * Only supported in Node.js not supported for Browsers\n * @param _extractedCreds - parsed connection string\n * @param _options - TablesServiceClient options\n */\n// eslint-disable-next-line @typescript-eslint/explicit-function-return-type, @typescript-eslint/explicit-module-boundary-types\nexport function fromAccountConnectionString(\n  _connectionString: ConnectionString,\n  _options?: TableServiceClientOptions,\n) {\n  throw new Error(\"Account connection string is only supported in Node.js environment\");\n}\n\nexport function getAccountConnectionString(\n  _accountName: string,\n  _accountKey: string,\n  _defaultEndpointsProtocol: string,\n  _endpointSuffix?: string,\n  _tableEndpoint?: string,\n): ConnectionString {\n  throw new Error(\"Account connection string is only supported in Node.js environment\");\n}\n"]}