mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
//@private
|
|
|
|
declare module "http/http-request" {
|
|
import http = require("http");
|
|
export var request: (options: http.HttpRequestOptions) => Promise<http.HttpResponse>;
|
|
}
|