-
Notifications
You must be signed in to change notification settings - Fork 3k
Export all core APIs from rxjs module directly. #6242
Copy link
Copy link
Closed
Labels
7.xIssues and PRs for version 7.xIssues and PRs for version 7.x
Description
Given the issue #6067 seems to be fairly difficult to solve, and given that we have renamed everything such that there are no conflicts between things like concat the creation function, and concat the operator, etc. Maybe it's time we talk about exporting all primary APIs from rxjs proper.
- It's a non-breaking change.
- It's the direction we've all discussed going many times.
- It's easier to deal with, overall.
I'm talking about:
import { of, interval, take, concatWith, map } from 'rxjs';
interval(1000).pipe(
take(3),
concatWith(of('done')),
map(x => `Tick: ${x}`)
)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
7.xIssues and PRs for version 7.xIssues and PRs for version 7.x