// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. import { WebResourceLike } from "../webResource"; export interface ServiceClientCredentials { /** * Signs a request with the Authentication header. * * @param {WebResourceLike} webResource The WebResourceLike/request to be signed. * @returns {Promise} The signed request object; */ signRequest(webResource: WebResourceLike): Promise; }