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

Timestamp

A value and the time at which it was emitted.

Emitted by the timestamp operator

interface Timestamp <T> {
timestamp: number;
value: T;
}

§Type Parameters

§Properties

§
timestamp: number
[src]

The timestamp. By default, this is in epoch milliseconds. Could vary based on the timestamp provider passed to the operator.

§
value: T
[src]