UNPKG

478 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google Inc. All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8/**
9 * A backend for http that uses the `XMLHttpRequest` browser API.
10 *
11 * Take care not to evaluate this in non-browser contexts.
12 *
13 * @deprecated see https://angular.io/guide/http
14 * @publicApi
15 */
16export declare class BrowserXhr {
17 constructor();
18 build(): any;
19}