export const is = <T>(event: ObservableEvent<T>): event is ErrorEvent => {
    return event.type === EventType.Error;
  };