Skip to content

Commit da10b18

Browse files
committed
clean up exports and imports
1 parent 0ec6389 commit da10b18

File tree

3 files changed

+5
-24
lines changed

3 files changed

+5
-24
lines changed

packages/firestore/src/api_pipelines.ts

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -53,24 +53,6 @@ export {
5353
SortStageOptions
5454
} from './lite-api/stage_options';
5555

56-
export {
57-
Stage,
58-
AddFields,
59-
Aggregate,
60-
Distinct,
61-
CollectionSource,
62-
CollectionGroupSource,
63-
DatabaseSource,
64-
DocumentsSource,
65-
Where,
66-
FindNearest,
67-
Limit,
68-
Offset,
69-
Select,
70-
Sort,
71-
RawStage
72-
} from './lite-api/stage';
73-
7456
export {
7557
field,
7658
constant,
@@ -175,10 +157,7 @@ export {
175157
FunctionExpression,
176158
Ordering,
177159
BooleanExpression,
178-
AggregateFunction
179-
} from './lite-api/expressions';
180-
181-
export type {
160+
AggregateFunction,
182161
ExpressionType,
183162
AliasedAggregate,
184163
Selectable

packages/firestore/src/core/pipeline-util.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ import {
2424
Ordering,
2525
lessThan,
2626
greaterThan,
27-
field
27+
field,
28+
constant
2829
} from '../lite-api/expressions';
2930
import { Pipeline } from '../lite-api/pipeline';
3031
import { doc } from '../lite-api/reference';

packages/firestore/test/integration/api/query_to_pipeline.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ import {
4040
documentId,
4141
addDoc,
4242
getDoc,
43-
or
43+
or,
44+
getDocs
4445
} from '../util/firebase_export';
4546
import {
4647
apiDescribe,

0 commit comments

Comments
 (0)