Front end of the Slack clone application.

publishReplay.js 599B

1234567891011121314151617
  1. /** PURE_IMPORTS_START .._operators_publishReplay PURE_IMPORTS_END */
  2. import { publishReplay as higherOrder } from '../operators/publishReplay';
  3. /* tslint:enable:max-line-length */
  4. /**
  5. * @param bufferSize
  6. * @param windowTime
  7. * @param selectorOrScheduler
  8. * @param scheduler
  9. * @return {Observable<T> | ConnectableObservable<T>}
  10. * @method publishReplay
  11. * @owner Observable
  12. */
  13. export function publishReplay(bufferSize, windowTime, selectorOrScheduler, scheduler) {
  14. return higherOrder(bufferSize, windowTime, selectorOrScheduler, scheduler)(this);
  15. }
  16. //# sourceMappingURL=publishReplay.js.map