setup-bun/node_modules/@azure/ms-rest-js/es/lib/credentials/serviceClientCredentials.d.ts

11 lines
457 B
TypeScript
Raw Normal View History

2022-07-12 09:00:22 +02:00
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<WebResourceLike>} The signed request object;
*/
signRequest(webResource: WebResourceLike): Promise<WebResourceLike>;
}
//# sourceMappingURL=serviceClientCredentials.d.ts.map