tencentcloud-sdk-nodejs-commontest
Version:
Tencent Cloud API NODEJS SDK
28 lines (27 loc) • 773 B
TypeScript
import { Response } from "node-fetch";
/**
* @inner
*/
export declare class HttpConnection {
static doRequest({ method, url, data, timeout, }: {
method: string;
url: string;
data: any;
timeout: number;
}): Promise<Response>;
static doRequestWithSign3({ method, url, data, service, action, region, version, secretId, secretKey, multipart, timeout, token, requestClient, }: {
method: string;
url: string;
data: any;
service: string;
action: string;
region: string;
version: string;
secretId: string;
secretKey: string;
multipart?: boolean;
timeout?: number;
token: string;
requestClient: string;
}): Promise<Response>;
}