{"version":3,"file":"tablesNamedCredentialPolicy-browser.mjs","sourceRoot":"","sources":["../../src/tablesNamedCredentialPolicy-browser.mts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,kCAAkC;AAKlC,MAAM,UAAU,8BAA8B,CAAC,WAA+B;IAC5E,MAAM,IAAI,KAAK,CAAC,kEAAkE,CAAC,CAAC;AACtF,CAAC;AAED,MAAM,UAAU,sBAAsB,CACpC,QAAyB,EACzB,WAA+B;IAE/B,MAAM,IAAI,KAAK,CAAC,kEAAkE,CAAC,CAAC;AACtF,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type { NamedKeyCredential } from \"@azure/core-auth\";\nimport type { PipelineRequest } from \"@azure/core-rest-pipeline\";\n\nexport function tablesNamedKeyCredentialPolicy(_credential: NamedKeyCredential): never {\n  throw new Error(\"Shared Access Key authentication is not supported in the browser\");\n}\n\nexport function getAuthorizationHeader(\n  _request: PipelineRequest,\n  _credential: NamedKeyCredential,\n): never {\n  throw new Error(\"Shared Access Key authentication is not supported in the browser\");\n}\n"]}