/** * Flowtype definitions for observer-manager * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { Observable, Observer, Subscription } from "rxjs"; export type AppSubscriber = | $Rest, { ... }> | ((value: T) => void); export type AppObserverManager = $ReadOnly<{ subscribe: (observerOrNext: AppSubscriber) => Subscription, unsubscribe: (subscription: Subscription) => void, notify: (value: T) => void, destroy: () => void, observable: Observable, ... }>; export type AppObserverSubscribe = ( subscriber: AppSubscriber ) => Subscription;