Fires2REST - v0.3.0
    Preparing search index...

    Interface QuerySnapshot<T>

    A snapshot of query results

    interface QuerySnapshot<T = DocumentData> {
        docs: QueryDocumentSnapshot<T>[];
        empty: boolean;
        size: number;
        forEach(callback: (doc: QueryDocumentSnapshot<T>) => void): void;
    }

    Type Parameters

    Index

    Properties

    Methods

    Properties

    The documents in this snapshot

    empty: boolean

    True if there are no documents

    size: number

    The number of documents

    Methods