Skip to content

Commit b6eea10

Browse files
BioPhotonbenlesh
authored andcommitted
docs(delayWhen): Extended see also (#4946)
See also section extended with all related operators. This closes #4922
1 parent 2e8bae8 commit b6eea10

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/internal/operators/delayWhen.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,15 @@ export function delayWhen<T>(delayDurationSelector: (value: T, index: number) =>
5151
* delayedClicks.subscribe(x => console.log(x));
5252
* ```
5353
*
54-
* @see {@link debounce}
5554
* @see {@link delay}
55+
* @see {@link throttle}
56+
* @see {@link throttleTime}
57+
* @see {@link debounce}
58+
* @see {@link debounceTime}
59+
* @see {@link sample}
60+
* @see {@link sampleTime}
61+
* @see {@link audit}
62+
* @see {@link auditTime}
5663
*
5764
* @param {function(value: T, index: number): Observable} delayDurationSelector A function that
5865
* returns an Observable for each value emitted by the source Observable, which

0 commit comments

Comments
 (0)