aggregateQuerySnapshotEqual
Compares two AggregateQuerySnapshot
instances for equality.
Two AggregateQuerySnapshot
instances are considered "equal" if they have
underlying queries that compare equal, and the same data.
function aggregateQuerySnapshotEqual<AggregateSpecType extends AggregateSpec, AppModelType, DbModelType extends DocumentData>(left: AggregateQuerySnapshot<AggregateSpecType, AppModelType, DbModelType>, right: AggregateQuerySnapshot<AggregateSpecType, AppModelType, DbModelType>): boolean;
§
aggregateQuerySnapshotEqual<AggregateSpecType extends AggregateSpec, AppModelType, DbModelType extends DocumentData>(left: AggregateQuerySnapshot<AggregateSpecType, AppModelType, DbModelType>, right: AggregateQuerySnapshot<AggregateSpecType, AppModelType, DbModelType>): boolean
[src]§Parameters
§
left: AggregateQuerySnapshot<AggregateSpecType, AppModelType, DbModelType>
[src]- The first
AggregateQuerySnapshot
to compare.
§
right: AggregateQuerySnapshot<AggregateSpecType, AppModelType, DbModelType>
[src]- The second
AggregateQuerySnapshot
to compare.