Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

subscribeToObservable.d.ts 298B

1234567
  1. import { Subscriber } from '../Subscriber';
  2. /**
  3. * Subscribes to an object that implements Symbol.observable with the given
  4. * Subscriber.
  5. * @param obj An object that implements Symbol.observable
  6. */
  7. export declare const subscribeToObservable: <T>(obj: any) => (subscriber: Subscriber<T>) => any;