The problem is I want to assign a value on a observable type interface. But I don't know how to do that.
export interface LocalConsultationCachingModel {
cache: ConsultationModel[];
httpPromise: Observable<ConsultationModel[]>;
}
I want to assign on httpPromise: Observable<ConsultationModel[]>;
}