Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

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;