Skip to content

Commit

Permalink
docs(delayWhen): Extended see also (#4946)
Browse files Browse the repository at this point in the history
See also section extended with all related operators.

This closes #4922
  • Loading branch information
BioPhoton authored and benlesh committed Aug 6, 2019
1 parent 92e3ca7 commit b0fe286
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/internal/operators/delayWhen.ts
Expand Up @@ -51,8 +51,15 @@ export function delayWhen<T>(delayDurationSelector: (value: T, index: number) =>
* delayedClicks.subscribe(x => console.log(x));
* ```
*
* @see {@link debounce}
* @see {@link delay}
* @see {@link throttle}
* @see {@link throttleTime}
* @see {@link debounce}
* @see {@link debounceTime}
* @see {@link sample}
* @see {@link sampleTime}
* @see {@link audit}
* @see {@link auditTime}
*
* @param {function(value: T, index: number): Observable} delayDurationSelector A function that
* returns an Observable for each value emitted by the source Observable, which
Expand Down

0 comments on commit b0fe286

Please sign in to comment.