Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RepeatConfig

interface RepeatConfig {
count?: number;
delay?: number | ((count: number) => ObservableInput<any>);
}

§Properties

§
count?: number
[src]

The number of times to repeat the source. Defaults to Infinity.

§
delay?: number | ((count: number) => ObservableInput<any>)
[src]

If a number, will delay the repeat of the source by that number of milliseconds. If a function, it will provide the number of times the source has been subscribed to, and the return value should be a valid observable input that will notify when the source should be repeated. If the notifier observable is empty, the result will complete.