"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); exports.isKeyCredential = isKeyCredential; const core_util_1 = require("@azure/core-util"); /** * Tests an object to determine whether it implements KeyCredential. * * @param credential - The assumed KeyCredential to be tested. */ function isKeyCredential(credential) { return (0, core_util_1.isObjectWithProperties)(credential, ["key"]) && typeof credential.key === "string"; }//# sourceMappingURL=https://main.vscode-cdn.net/sourcemaps/072586267e68ece9a47aa43f8c108e0dcbf44622/node_modules/@azure/core-auth/dist/commonjs/keyCredential.js.map