Deprecations

The API listed below will be removed in the next major release!

Scheduler Scheduler is an internal implementation detail of RxJS, and should not be used directly. Rather, create your own class and implement SchedulerLike
NotificationKind NotificationKind is deprecated as const enums are not compatible with isolated modules. Use a string literal instead.
empty Deprecated in favor of using EMPTY constant, or scheduled (e.g. `scheduled([], scheduler)`)
never Deprecated in favor of using NEVER constant.
ObservableLike use InteropObservable
combineLatest Deprecated in favor of static combineLatest.
concat Deprecated in favor of static concat.
merge Deprecated in favor of static merge.
partition use `partition` static creation function instead
race Deprecated in favor of static race.
zip Deprecated in favor of static zip.