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

VectorValue

Represents a vector type in Firestore documents. Create an instance with FieldValue.vector.

class VectorValue {
isEqual(other: VectorValue): boolean;
toArray(): number[];
}

§Methods

§
isEqual(other: VectorValue): boolean
[src]

Returns true if the two VectorValue has the same raw number arrays, returns false otherwise.

§
toArray(): number[]
[src]

Returns a copy of the raw number array form of the vector.