firestore.DocumentOptions interface

DocumentOptions は、提供されたドキュメントとオプションのデータベースおよび名前空間を使用して EventHandlerOptions を拡張します。

サイン:

export interface DocumentOptions<Document extends string = string> extends EventHandlerOptions 

拡張: EventHandlerOptions

プロパティ

財産タイプ説明
データベースFirestore データベース
書類書類ドキュメントのパス
名前空間Firestore 名前空間

firestore.DocumentOptions.database

Firestore データベース

サイン:

database?: string;

firestore.DocumentOptions.document

ドキュメントのパス

サイン:

document: Document;

firestore.DocumentOptions.namespace

Firestore 名前空間

サイン:

namespace?: string;