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

TimeInterval

A value emitted and the amount of time since the last value was emitted.

Emitted by the timeInterval operator.

interface TimeInterval <T> {
interval: number;
value: T;
}

§Type Parameters

§Properties

§
interval: number
[src]

The amount of time between this value's emission and the previous value's emission. If this is the first emitted value, then it will be the amount of time since subscription started.

§
value: T
[src]