Skip to content

Commit cc93b3b

Browse files
committed
sort imports based on lint request
1 parent 10ee77e commit cc93b3b

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

packages/firestore/src/core/firestore_client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ export function firestoreClientTransaction<T>(
509509
return deferred.promise;
510510
}
511511

512-
export function firestoreClientRunCountQuery<T extends AggregateSpec>(
512+
export function firestoreClientRunCountQuery(
513513
client: FirestoreClient,
514514
query: LiteQuery<unknown>
515515
): Promise<AggregateQuerySnapshot<{ count: AggregateField<number> }>> {

packages/firestore/src/lite-api/aggregate.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,18 @@
1515
* limitations under the License.
1616
*/
1717

18+
import { deepEqual } from '@firebase/util';
19+
20+
import { Value } from '../protos/firestore_proto_api';
21+
import { invokeRunAggregationQueryRpc } from '../remote/datastore';
1822
import { hardAssert } from '../util/assert';
1923
import { cast } from '../util/input_validation';
20-
import { invokeRunAggregationQueryRpc } from '../remote/datastore';
21-
import { Value } from '../protos/firestore_proto_api';
2224

23-
import { DocumentFieldValue, Query, queryEqual } from './reference';
24-
import { Firestore } from './database';
2525
import { getDatastore } from './components';
26+
import { Firestore } from './database';
27+
import { DocumentFieldValue, Query, queryEqual } from './reference';
2628
import { LiteUserDataWriter } from './reference_impl';
2729

28-
import { deepEqual } from '@firebase/util';
29-
import { FieldPath } from './field_path';
30-
3130
/**
3231
* An `AggregateField` computes some aggregation statistics from the result set of
3332
* an aggregation query.

0 commit comments

Comments
 (0)