File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
packages/firestore/lite/src/api Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ import {
96
96
} from '../../../src/model/path' ;
97
97
import { Value as ProtoValue } from '../../../src/protos/firestore_proto_api' ;
98
98
import { refValue } from '../../../src/model/values' ;
99
- import { DocumentReference as ExpDocumentReference } from '../../../exp/src/api/reference' ;
100
99
import { isServerTimestamp } from '../../../src/model/server_timestamps' ;
101
100
102
101
export class LiteUserDataWriter extends AbstractUserDataWriter {
@@ -1099,7 +1098,7 @@ function parseDocumentIdValue(
1099
1098
) ;
1100
1099
}
1101
1100
return refValue ( databaseId , new DocumentKey ( path ) ) ;
1102
- } else if ( documentIdValue instanceof ExpDocumentReference ) {
1101
+ } else if ( documentIdValue instanceof DocumentReference ) {
1103
1102
return refValue ( databaseId , documentIdValue . _key ) ;
1104
1103
} else {
1105
1104
throw new FirestoreError (
You can’t perform that action at this time.
0 commit comments