import { HttpClient } from '@angular/common/http'; export declare class RequestBase { protected http: HttpClient; constructor(http: HttpClient); protected requestArrayBuffer(url: string): Promise; protected requstJson(url: string): Promise; protected requestText(url: string): Promise; }