prorm API Reference
    Preparing search index...

    Interface FirestoreStoreOptions

    Connection options for FirestoreStore.

    projectId/keyFilename configure the underlying Firestore client. When a pre-built client is supplied (e.g. in tests), connect() uses it directly and skips loading the @google-cloud/firestore driver.

    interface FirestoreStoreOptions {
        projectId?: string;
        keyFilename?: string;
        client?: any;
    }
    Index
    projectId?: string
    keyFilename?: string
    client?: any

    A pre-built Firestore client to use instead of the driver.