Skip to content

Commit

Permalink
docs(delay): add relevant operator links to delay docs (#6156)
Browse files Browse the repository at this point in the history
* docs(delay): add relevant operator links to delay docs

should help close #4921

* docs: add throttle; re-order

Co-authored-by: Nicholas Jamieson <nicholas@cartant.com>
  • Loading branch information
Armenvardanyan95 and cartant committed Apr 30, 2021
1 parent 70188fe commit f132d0d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/internal/operators/delay.ts
Expand Up @@ -41,8 +41,15 @@ import { timer } from '../observable/timer';
* delayedClicks.subscribe(x => console.log(x));
* ```
*
* @see {@link debounceTime}
* @see {@link delayWhen}
* @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 {number|Date} due The delay duration in milliseconds (a `number`) or
* a `Date` until which the emission of the source items is delayed.
Expand Down

0 comments on commit f132d0d

Please sign in to comment.