Front end of the Slack clone application.

timeInterval.js 585B

123456789101112131415161718
  1. /** PURE_IMPORTS_START .._scheduler_async,.._operators_timeInterval PURE_IMPORTS_END */
  2. import { async } from '../scheduler/async';
  3. import { timeInterval as higherOrder, TimeInterval } from '../operators/timeInterval';
  4. export { TimeInterval };
  5. /**
  6. * @param scheduler
  7. * @return {Observable<TimeInterval<any>>|WebSocketSubject<T>|Observable<T>}
  8. * @method timeInterval
  9. * @owner Observable
  10. */
  11. export function timeInterval(scheduler) {
  12. if (scheduler === void 0) {
  13. scheduler = async;
  14. }
  15. return higherOrder(scheduler)(this);
  16. }
  17. //# sourceMappingURL=timeInterval.js.map