DocumentOptions는 제공된 문서와 선택적 데이터베이스 및 네임스페이스를 사용하여 EventHandlerOptions를 확장합니다.
서명:
export interface DocumentOptions<Document extends string = string> extends EventHandlerOptions
속성
속성 | 유형 | 설명 |
---|---|---|
데이터베이스 | 문자열 | Firestore 데이터베이스 |
문서 | 문서 | 문서 경로 |
namespace | 문자열 | Firestore 네임스페이스 |
Firestore.DocumentOptions.database
Firestore 데이터베이스
서명:
database?: string;
Firestore.DocumentOptions.document
문서 경로
서명:
document: Document;
Firestore.DocumentOptions.namespace
Firestore 네임스페이스
서명:
namespace?: string;