e57f256f0d60ef965028053da549939aadf2bbd7a5d229b6f8855142ad1a442c6df22f4d668922f6bf4c70607fb0bfba019619872b28156c95fb64aa896d3b 657 B

123456789101112131415
  1. import { ObservableInput, SchedulerLike } from '../types';
  2. import { Observable } from '../Observable';
  3. /**
  4. * Converts from a common {@link ObservableInput} type to an observable where subscription and emissions
  5. * are scheduled on the provided scheduler.
  6. *
  7. * @see {@link from}
  8. * @see {@link of}
  9. *
  10. * @param input The observable, array, promise, iterable, etc you would like to schedule
  11. * @param scheduler The scheduler to use to schedule the subscription and emissions from
  12. * the returned observable.
  13. */
  14. export declare function scheduled<T>(input: ObservableInput<T>, scheduler: SchedulerLike): Observable<T>;
  15. //# sourceMappingURL=scheduled.d.ts.map