import { Observable } from 'rxjs/Rx'; export interface IErrorHandleService { error$: Observable; addError(err: string): void; }