DocumentOptions rozszerzają EventHandlerOptions o udostępniony dokument oraz opcjonalną bazę danych i przestrzeń nazw.
Podpis:
export interface DocumentOptions<Document extends string = string> extends EventHandlerOptions
Rozszerza: EventHandlerOptions
Właściwości
Właściwość | Typ | Opis |
---|---|---|
baza danych | ciąg znaków | Baza danych Firestore |
dokument | Dokument | Ścieżka dokumentu |
przestrzeń nazw | ciąg znaków | Przestrzeń nazw Firestore |
Firestore.DocumentOptions.database
Baza danych Firestore
Podpis:
database?: string;
Firestore.DocumentOptions.document
Ścieżka dokumentu
Podpis:
document: Document;
Firestore.DocumentOptions.przestrzeń-nazw
Przestrzeń nazw Firestore
Podpis:
namespace?: string;