import { Observable } from 'rxjs'; import { TypeOptions } from '../enums'; export interface Options { typeOptions: TypeOptions; url?: string; httpSubscribe?: ({ option, component }: any) => Observable; mapHttpSubscribe?: ({ response, component }: { response: any; component: any; }) => any; }