export type HermesObserver = { next: (value: T) => void; error: (error: any) => void; complete: () => void; };