firestore.DocumentOptions interface

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

署名:

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

拡張: EventHandlerOptions

プロパティ

プロパティ 説明
データベース 文字列 Firestore データベース
ドキュメント ドキュメント ドキュメントのパス
namespace 文字列 Firestore 名前空間

firestore.DocumentOptions.database

Firestore データベース

署名:

database?: string;

firestore.DocumentOptions.document

ドキュメントのパス

署名:

document: Document;

firestore.DocumentOptions.namespace

Firestore 名前空間

署名:

namespace?: string;