Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update deprecations #6259

Merged
merged 38 commits into from Apr 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
5f5a601
chore: remove unused $$iterator symbol
cartant Apr 25, 2021
f5677a9
chore: update some renamed deprecations
cartant Apr 25, 2021
f98c5cd
chore: update some internal deprecations
cartant Apr 25, 2021
1dbd638
chore: update scheduler deprecations
cartant Apr 25, 2021
b0f0f83
chore: update the xWith-related deprecations
cartant Apr 25, 2021
3299f75
chore: update empty and never deprecations
cartant Apr 25, 2021
288d333
chore: update config deprecations
cartant Apr 25, 2021
2e8338f
chore: update timeoutWith deprecations
cartant Apr 25, 2021
24a3d2d
chore: update generate deprecations
cartant Apr 25, 2021
3e4dc6a
chore: update TimeInterval deprecation
cartant Apr 25, 2021
0ee3f84
chore: update Observable and tap deprecations
cartant Apr 25, 2021
d28b31e
chore: update pluck deprecation
cartant Apr 25, 2021
90d99e6
chore: update partition deprecation
cartant Apr 25, 2021
c90302a
chore: remove sampleTime deprecation
cartant Apr 25, 2021
38ec455
chore: update resultSelector deprecations
cartant Apr 26, 2021
4a9359e
chore: update mergeMapTo deprecation
cartant Apr 26, 2021
3a5abde
chore: add backticks
cartant Apr 26, 2021
ca9d731
chore: update scheduler parameter deprecations
cartant Apr 26, 2021
75f8621
chore: update pairs deprecations
cartant Apr 26, 2021
6e8ecb8
chore: update scheduler parameter deprecations
cartant Apr 26, 2021
eed8b8a
chore: update delayWhen deprecations
cartant Apr 26, 2021
481d116
chore: update timer deprecation
cartant Apr 26, 2021
fba8082
chore: update api_guardian
cartant Apr 26, 2021
5cd9be1
chore: update throwError deprecations
cartant Apr 26, 2021
be22c33
chore: remove delayWhen dtslint deprecation test
cartant Apr 26, 2021
b8398a3
chore: use API type in defer docs
cartant Apr 26, 2021
4df337e
chore: update Notification deprecations
cartant Apr 26, 2021
f4eccf0
chore: remove materialize deprecation
cartant Apr 26, 2021
51a4088
docs: add multicasting deprecations doc
cartant Apr 26, 2021
158d64f
chore: add colon after details
cartant Apr 26, 2021
da75642
chore: update multicasting deprecations
cartant Apr 27, 2021
1d20616
docs: use upcoming connectable API changes
cartant Apr 27, 2021
035a068
chore: use upcoming connectable API changes
cartant Apr 27, 2021
3e4b6b7
chore: update ajax deprecations
cartant Apr 27, 2021
5a0b212
chore: update websocked deprecation
cartant Apr 27, 2021
9b23310
chore: update uninferrable type param deprecations
cartant Apr 27, 2021
e96cc91
chore: update fromEvent deprecations
cartant Apr 27, 2021
c360d95
chore: update rest-params deprecations
cartant Apr 27, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion api_guard/dist/types/operators/index.d.ts
Expand Up @@ -57,7 +57,6 @@ export declare function defaultIfEmpty<T, R>(defaultValue: R): OperatorFunction<

export declare function delay<T>(due: number | Date, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;

export declare function delayWhen<T>(delayDurationSelector: (value: T, index: number) => Observable<never>, subscriptionDelay?: Observable<any>): MonoTypeOperatorFunction<T>;
export declare function delayWhen<T>(delayDurationSelector: (value: T, index: number) => Observable<any>, subscriptionDelay: Observable<any>): MonoTypeOperatorFunction<T>;
export declare function delayWhen<T>(delayDurationSelector: (value: T, index: number) => Observable<any>): MonoTypeOperatorFunction<T>;

Expand Down