operators.d.ts 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. export { audit } from './operators/audit';
  2. export { auditTime } from './operators/auditTime';
  3. export { buffer } from './operators/buffer';
  4. export { bufferCount } from './operators/bufferCount';
  5. export { bufferTime } from './operators/bufferTime';
  6. export { bufferToggle } from './operators/bufferToggle';
  7. export { bufferWhen } from './operators/bufferWhen';
  8. export { catchError } from './operators/catchError';
  9. export { combineAll } from './operators/combineAll';
  10. export { combineLatest } from './operators/combineLatest';
  11. export { concat } from './operators/concat';
  12. export { concatAll } from './operators/concatAll';
  13. export { concatMap } from './operators/concatMap';
  14. export { concatMapTo } from './operators/concatMapTo';
  15. export { count } from './operators/count';
  16. export { debounce } from './operators/debounce';
  17. export { debounceTime } from './operators/debounceTime';
  18. export { defaultIfEmpty } from './operators/defaultIfEmpty';
  19. export { delay } from './operators/delay';
  20. export { delayWhen } from './operators/delayWhen';
  21. export { dematerialize } from './operators/dematerialize';
  22. export { distinct } from './operators/distinct';
  23. export { distinctUntilChanged } from './operators/distinctUntilChanged';
  24. export { distinctUntilKeyChanged } from './operators/distinctUntilKeyChanged';
  25. export { elementAt } from './operators/elementAt';
  26. export { every } from './operators/every';
  27. export { exhaust } from './operators/exhaust';
  28. export { exhaustMap } from './operators/exhaustMap';
  29. export { expand } from './operators/expand';
  30. export { filter } from './operators/filter';
  31. export { finalize } from './operators/finalize';
  32. export { find } from './operators/find';
  33. export { findIndex } from './operators/findIndex';
  34. export { first } from './operators/first';
  35. export { groupBy } from './operators/groupBy';
  36. export { ignoreElements } from './operators/ignoreElements';
  37. export { isEmpty } from './operators/isEmpty';
  38. export { last } from './operators/last';
  39. export { map } from './operators/map';
  40. export { mapTo } from './operators/mapTo';
  41. export { materialize } from './operators/materialize';
  42. export { max } from './operators/max';
  43. export { merge } from './operators/merge';
  44. export { mergeAll } from './operators/mergeAll';
  45. export { mergeMap } from './operators/mergeMap';
  46. export { mergeMap as flatMap } from './operators/mergeMap';
  47. export { mergeMapTo } from './operators/mergeMapTo';
  48. export { mergeScan } from './operators/mergeScan';
  49. export { min } from './operators/min';
  50. export { multicast } from './operators/multicast';
  51. export { observeOn } from './operators/observeOn';
  52. export { onErrorResumeNext } from './operators/onErrorResumeNext';
  53. export { pairwise } from './operators/pairwise';
  54. export { partition } from './operators/partition';
  55. export { pluck } from './operators/pluck';
  56. export { publish } from './operators/publish';
  57. export { publishBehavior } from './operators/publishBehavior';
  58. export { publishLast } from './operators/publishLast';
  59. export { publishReplay } from './operators/publishReplay';
  60. export { race } from './operators/race';
  61. export { reduce } from './operators/reduce';
  62. export { repeat } from './operators/repeat';
  63. export { repeatWhen } from './operators/repeatWhen';
  64. export { retry } from './operators/retry';
  65. export { retryWhen } from './operators/retryWhen';
  66. export { refCount } from './operators/refCount';
  67. export { sample } from './operators/sample';
  68. export { sampleTime } from './operators/sampleTime';
  69. export { scan } from './operators/scan';
  70. export { sequenceEqual } from './operators/sequenceEqual';
  71. export { share } from './operators/share';
  72. export { shareReplay } from './operators/shareReplay';
  73. export { single } from './operators/single';
  74. export { skip } from './operators/skip';
  75. export { skipLast } from './operators/skipLast';
  76. export { skipUntil } from './operators/skipUntil';
  77. export { skipWhile } from './operators/skipWhile';
  78. export { startWith } from './operators/startWith';
  79. /**
  80. * TODO(https://github.com/ReactiveX/rxjs/issues/2900): Add back subscribeOn once it can be
  81. * treeshaken. Currently if this export is added back, it
  82. * forces apps to bring in asap scheduler along with
  83. * Immediate, root, and other supporting code.
  84. */
  85. export { switchAll } from './operators/switchAll';
  86. export { switchMap } from './operators/switchMap';
  87. export { switchMapTo } from './operators/switchMapTo';
  88. export { take } from './operators/take';
  89. export { takeLast } from './operators/takeLast';
  90. export { takeUntil } from './operators/takeUntil';
  91. export { takeWhile } from './operators/takeWhile';
  92. export { tap } from './operators/tap';
  93. export { throttle } from './operators/throttle';
  94. export { throttleTime } from './operators/throttleTime';
  95. export { timeInterval } from './operators/timeInterval';
  96. export { timeout } from './operators/timeout';
  97. export { timeoutWith } from './operators/timeoutWith';
  98. export { timestamp } from './operators/timestamp';
  99. export { toArray } from './operators/toArray';
  100. export { window } from './operators/window';
  101. export { windowCount } from './operators/windowCount';
  102. export { windowTime } from './operators/windowTime';
  103. export { windowToggle } from './operators/windowToggle';
  104. export { windowWhen } from './operators/windowWhen';
  105. export { withLatestFrom } from './operators/withLatestFrom';
  106. export { zip } from './operators/zip';
  107. export { zipAll } from './operators/zipAll';