refactor(http): Removed deprecated HTTP_PROVIDERS and JSONP_PROVIDERS (#10864)
BREAKING CHANGE: previously deprecated HTTP_PROVIDERS and JSONP_PROVIDERS were removed; see deprecation notice for migration instructions.
This commit is contained in:

committed by
vikerman

parent
0a22e8eefd
commit
675e582ffd
12
tools/public_api_guard/http/index.d.ts
vendored
12
tools/public_api_guard/http/index.d.ts
vendored
@ -71,12 +71,6 @@ export declare class Http {
|
||||
request(url: string | Request, options?: RequestOptionsArgs): Observable<Response>;
|
||||
}
|
||||
|
||||
/** @deprecated */
|
||||
export declare const HTTP_BINDINGS: any[];
|
||||
|
||||
/** @deprecated */
|
||||
export declare const HTTP_PROVIDERS: any[];
|
||||
|
||||
/** @experimental */
|
||||
export declare function httpFactory(xhrBackend: XHRBackend, requestOptions: RequestOptions): Http;
|
||||
|
||||
@ -84,18 +78,12 @@ export declare function httpFactory(xhrBackend: XHRBackend, requestOptions: Requ
|
||||
export declare class HttpModule {
|
||||
}
|
||||
|
||||
/** @deprecated */
|
||||
export declare const JSON_BINDINGS: any[];
|
||||
|
||||
/** @experimental */
|
||||
export declare class Jsonp extends Http {
|
||||
constructor(backend: ConnectionBackend, defaultOptions: RequestOptions);
|
||||
request(url: string | Request, options?: RequestOptionsArgs): Observable<Response>;
|
||||
}
|
||||
|
||||
/** @experimental */
|
||||
export declare const JSONP_PROVIDERS: any[];
|
||||
|
||||
/** @experimental */
|
||||
export declare abstract class JSONPBackend extends ConnectionBackend {
|
||||
}
|
||||
|
Reference in New Issue
Block a user