firestore namespace

Funkcje

Funkcja Opis
beforeSnapshotConstructor(zdarzenie)
baza_danych(baza danych)
document(ścieżka) Wybierz dokument Firestore, w którym chcesz nasłuchiwać zdarzeń.
przestrzeń-nazw(przestrzeń nazw)
snapshotConstructor(zdarzenie)

Zajęcia

Klasa Opis
Tworzenie baz danych
DocumentBuilder
Kreator przestrzeni nazw

Aliasy typu

Wpisz alias Opis
DocumentSnapshot
QueryDocumentSnapshot

Firestore.beforeSnapshotConstructor()

Podpis:

export declare function beforeSnapshotConstructor(event: Event): DocumentSnapshot;

Parametry

Parametr Typ Opis
event Zdarzenie

Zwroty:

DocumentSnapshot

Firestore.database()

Podpis:

export declare function database(database: string): DatabaseBuilder;

Parametry

Parametr Typ Opis
baza danych ciąg znaków

Zwroty:

Tworzenie baz danych

Firestore.document()

Wybierz dokument Firestore, w którym chcesz nasłuchiwać zdarzeń.

Podpis:

export declare function document<Path extends string>(path: Path): DocumentBuilder<Path>;

Parametry

Parametr Typ Opis
ścieżka Ścieżka Pełna ścieżka bazy danych na potrzeby nasłuchiwania. Obejmuje to nazwę kolekcji, której częścią jest dokument. Jeśli na przykład kolekcja nazywa się „użytkownicy” , a dokument ma nazwę „Ada”, ścieżka to „/users/Ada”.

Zwroty:

DocumentBuilder<ścieżka>

Firestore.namespace()

Podpis:

export declare function namespace(namespace: string): NamespaceBuilder;

Parametry

Parametr Typ Opis
przestrzeń nazw ciąg znaków

Zwroty:

Kreator przestrzeni nazw

Firestore.snapshotConstructor()

Podpis:

export declare function snapshotConstructor(event: Event): DocumentSnapshot;

Parametry

Parametr Typ Opis
event Zdarzenie

Zwroty:

DocumentSnapshot

Firestore.DocumentSnapshot

Podpis:

export type DocumentSnapshot = firestore.DocumentSnapshot;

Firestore.QueryDocumentSnapshot

Podpis:

export type QueryDocumentSnapshot = firestore.QueryDocumentSnapshot;