UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

4 lines (3 loc) 257 B
import type { HttpRequestOptions, HttpResponse, Headers } from '../http-interfaces'; export declare function request(options: HttpRequestOptions): Promise<HttpResponse>; export declare function addHeader(headers: Headers, key: string, value: string): void;