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

TimestampProvider

This is a type that provides a method to allow RxJS to create a numeric timestamp

interface TimestampProvider {
now(): number;
}

§Methods

§
now(): number
[src]

Returns a timestamp as a number.

This is used by types like ReplaySubject or operators like timestamp to calculate the amount of time passed between events.