mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
/**
|
|
* @module "http/http-request"
|
|
* @private
|
|
*/ /** */
|
|
|
|
//@private
|
|
|
|
import * as http from "..";
|
|
export var request: (options: http.HttpRequestOptions) => Promise<http.HttpResponse>;
|
|
export function addHeader(headers: http.Headers, key: string, value: string): void;
|