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

IndexConfiguration

deprecated

A list of Firestore indexes to speed up local query execution.

See JSON Format for a description of the format of the index definition.

@deprecated

Instead of creating cache indexes manually, consider using enablePersistentCacheIndexAutoCreation() to let the SDK decide whether to create cache indexes for queries running locally.

interface IndexConfiguration {
[key: string]: unknown;
readonly indexes?: Index[];
}

§Index Signatures

§
[key: string]: unknown

§Properties

§
readonly indexes?: Index[]
[src]

A list of all Firestore indexes.