Skip to content

Commit d48623b

Browse files
Merge branch 'mrschmidt/expshim' of github.com:firebase/firebase-js-sdk into mrschmidt/expshim
2 parents 320ff46 + 631ff40 commit d48623b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/firestore/exp/test/shim.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*/
1717

1818
import * as legacy from '@firebase/firestore-types';
19-
import * as exp from '../../exp/';
19+
import * as exp from '../';
2020

2121
import {
2222
addDoc,
@@ -60,7 +60,7 @@ import { UntypedFirestoreDataConverter } from '../../src/api/user_data_reader';
6060
import { isPartialObserver, PartialObserver } from '../../src/api/observer';
6161
import { isPlainObject } from '../../src/util/input_validation';
6262

63-
export { GeoPoint, Blob, Timestamp } from '../../exp/index.node';
63+
export { GeoPoint, Blob, Timestamp } from '../index.node';
6464

6565
/* eslint-disable @typescript-eslint/no-explicit-any */
6666

@@ -648,7 +648,7 @@ export class CollectionReference<T = legacy.DocumentData> extends Query<T>
648648
}
649649
}
650650

651-
async add(data: T): Promise<DocumentReference<T>> {
651+
add(data: T): Promise<DocumentReference<T>> {
652652
return addDoc(this._delegate, unwwrap(data)).then(
653653
docRef => new DocumentReference(docRef)
654654
);

0 commit comments

Comments
 (0)