Skip to content

Commit 6af4c27

Browse files
Fix imports for Console builds (#3437)
1 parent c2829cd commit 6af4c27

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/firestore/index.console.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020

2121
export { Firestore, FirestoreDatabase } from './src/api/database';
2222
export {
23-
PublicCollectionReference as CollectionReference,
24-
PublicDocumentReference as DocumentReference,
25-
PublicDocumentSnapshot as DocumentSnapshot,
26-
PublicQuerySnapshot as QuerySnapshot,
27-
PublicFieldValue as FieldValue,
28-
PublicBlob as Blob
29-
} from './src/config';
23+
CollectionReference,
24+
DocumentReference,
25+
DocumentSnapshot,
26+
QuerySnapshot
27+
} from './src/api/database';
28+
export { Blob } from './src/api/blob';
3029
export { GeoPoint } from './src/api/geo_point';
3130
export { FirstPartyCredentialsSettings } from './src/api/credentials';
3231
export { FieldPath } from './src/api/field_path';
32+
export { FieldValue } from './src/api/field_value';
3333
export { Timestamp } from './src/api/timestamp';

0 commit comments

Comments
 (0)