File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -509,7 +509,7 @@ export function firestoreClientTransaction<T>(
509
509
return deferred . promise ;
510
510
}
511
511
512
- export function firestoreClientRunCountQuery < T extends AggregateSpec > (
512
+ export function firestoreClientRunCountQuery (
513
513
client : FirestoreClient ,
514
514
query : LiteQuery < unknown >
515
515
) : Promise < AggregateQuerySnapshot < { count : AggregateField < number > } > > {
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
+ import { deepEqual } from '@firebase/util' ;
19
+
20
+ import { Value } from '../protos/firestore_proto_api' ;
21
+ import { invokeRunAggregationQueryRpc } from '../remote/datastore' ;
18
22
import { hardAssert } from '../util/assert' ;
19
23
import { cast } from '../util/input_validation' ;
20
- import { invokeRunAggregationQueryRpc } from '../remote/datastore' ;
21
- import { Value } from '../protos/firestore_proto_api' ;
22
24
23
- import { DocumentFieldValue , Query , queryEqual } from './reference' ;
24
- import { Firestore } from './database' ;
25
25
import { getDatastore } from './components' ;
26
+ import { Firestore } from './database' ;
27
+ import { DocumentFieldValue , Query , queryEqual } from './reference' ;
26
28
import { LiteUserDataWriter } from './reference_impl' ;
27
29
28
- import { deepEqual } from '@firebase/util' ;
29
- import { FieldPath } from './field_path' ;
30
-
31
30
/**
32
31
* An `AggregateField` computes some aggregation statistics from the result set of
33
32
* an aggregation query.
You can’t perform that action at this time.
0 commit comments