UNPKG

544 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 */
8export declare const JSONP_HOME = "__ng_jsonp__";
9export declare class BrowserJsonp {
10 build(url: string): any;
11 nextRequestID(): string;
12 requestCallback(id: string): string;
13 exposeConnection(id: string, connection: any): void;
14 removeConnection(id: string): void;
15 send(node: any): void;
16 cleanup(node: any): void;
17}