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

SnapshotOptions

Options that configure how data is retrieved from a DocumentSnapshot (for example the desired behavior for server timestamps that have not yet been set to their final value).

interface SnapshotOptions {
readonly serverTimestamps?: "estimate" | "previous" | "none";
}

§Properties

§
readonly serverTimestamps?: "estimate" | "previous" | "none"
[src]

If set, controls the return value for server timestamps that have not yet been set to their final value.

By specifying 'estimate', pending server timestamps return an estimate based on the local clock. This estimate will differ from the final value and cause these values to change once the server result becomes available.

By specifying 'previous', pending timestamps will be ignored and return their previous value instead.

If omitted or set to 'none', null will be returned by default until the server value becomes available.