/* Copyright IBM Corp. 2018 */ import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { HttpOptions, HttpService } from './../../../utils'; import { ZoneService } from './../zone/zone.service'; /** * @dynamic */ export declare class HttpServiceOnJsonp implements HttpService { getJson: (aUrl: string, aOptions: HttpOptions) => Observable; getText: (aUrl: string, aOptions: HttpOptions) => Observable; constructor(aDocument: Document, aHttpClient: HttpClient, aZoneService: ZoneService); }