import { HttpHeaders } from '@angular/common/http'; import { Observable } from 'rxjs'; export interface ODataResponse { value: TYPE[]; } export interface GeneralODataServiceInterface { get: (query: string, headers?: HttpHeaders | null) => Observable>; }