Interface UseQueryDataOptions<AppModelType>

Options to configure the subscription

interface UseQueryDataOptions<AppModelType> {
    initialValue?: AppModelType[];
    snapshotListenOptions?: SnapshotListenOptions;
    snapshotOptions?: SnapshotOptions;
}

Type Parameters

  • AppModelType = DocumentData

Properties

initialValue?: AppModelType[]
snapshotListenOptions?: SnapshotListenOptions
snapshotOptions?: SnapshotOptions