Files
NativeScript/http/http-request.d.ts
Panayot Cankov 1ec28cbe98 Fix native image recreated on layout even if the view is not resized
Add InspectorBackendCommands.ts that is generated based on the API exposed by the web inspector frontend.
Add implementation for the network domain and call events in the http-request module so that inspector frontend could visualize the network requests made by the module

Fix tslint and doc comments
2016-03-09 11:08:13 +02:00

9 lines
216 B
TypeScript

//@private
declare module "http/http-request" {
import http = require("http");
export var domainDebugger: any;
export var request: (options: http.HttpRequestOptions) => Promise<http.HttpResponse>;
}