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

FieldValue

abstract

Sentinel values that can be used when writing document fields with set() or update().

abstract class FieldValue {
private constructor();
abstract isEqual(other: FieldValue): boolean;
}

§Constructors

§
new FieldValue() private
[src]

§Methods

§
isEqual(other: FieldValue): boolean abstract
[src]

Compares FieldValues for equality.