react-query-firebase / firestore / UseCollectionReferenceOptions
Type Alias: UseCollectionReferenceOptions<AppModelType, DbModelType>
ts
type UseCollectionReferenceOptions<AppModelType, DbModelType> = object;
Defined in: src/firestore/useCollectionReference.ts:6
Type Parameters
• AppModelType
• DbModelType extends DocumentData
= DocumentData
Type declaration
path
ts
path: string;
pathSegments?
ts
optional pathSegments: string[];
reference?
ts
optional reference:
| CollectionReference<AppModelType, DbModelType>
| DocumentReference<AppModelType, DbModelType>;