зеркало из https://github.com/Azure/ms-rest-js.git
15 строки
524 B
TypeScript
15 строки
524 B
TypeScript
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
import { WebResource } from "../webResource";
|
|
|
|
export interface ServiceClientCredentials {
|
|
/**
|
|
* Signs a request with the Authentication header.
|
|
*
|
|
* @param {WebResource} webResource The WebResource/request to be signed.
|
|
* @returns {Promise<WebResource>} The signed request object;
|
|
*/
|
|
signRequest(webResource: WebResource): Promise<WebResource>;
|
|
}
|