Skip to content

Commit 2e6b656

Browse files
Fix merge
1 parent a576652 commit 2e6b656

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

common/api-review/firestore-exp.api.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@
44
55
```ts
66

7+
import { DocumentData as DocumentData_2 } from '@firebase/firestore-types';
8+
import { FieldPath as FieldPath_4 } from '@firebase/firestore-types';
79
import { FirebaseApp } from '@firebase/app-types';
810
import { FirebaseAuthInternalName } from '@firebase/auth-interop-types';
911
import { _FirebaseService } from '@firebase/app-types';
10-
import * as firestore from '@firebase/firestore-types';
1112
import { LogLevel } from '@firebase/logger';
1213
import { LogLevelString } from '@firebase/logger';
1314
import { Provider } from '@firebase/component';
15+
import { SetOptions as SetOptions_2 } from '@firebase/firestore-types';
16+
import { SnapshotMetadata as SnapshotMetadata_2 } from '@firebase/firestore-types';
1417

1518
// @public (undocumented)
1619
export function addDoc<T>(reference: CollectionReference<T>, data: T): Promise<DocumentReference<T>>;
@@ -399,7 +402,7 @@ export class QuerySnapshot<T = DocumentData> {
399402
// Warning: (ae-forgotten-export) The symbol "DocumentChange" needs to be exported by the entry point index.d.ts
400403
//
401404
// (undocumented)
402-
docChanges(options?: SnapshotListenOptions): Array<DocumentChange_2<T>>;
405+
docChanges(options?: SnapshotListenOptions): Array<DocumentChange<T>>;
403406
// (undocumented)
404407
get docs(): Array<QueryDocumentSnapshot<T>>;
405408
// (undocumented)
@@ -463,14 +466,14 @@ export interface SnapshotListenOptions {
463466
}
464467

465468
// @public (undocumented)
466-
export class SnapshotMetadata implements firestore.SnapshotMetadata {
469+
export class SnapshotMetadata implements SnapshotMetadata_2 {
467470
constructor(hasPendingWrites: boolean, fromCache: boolean);
468471
// (undocumented)
469472
readonly fromCache: boolean;
470473
// (undocumented)
471474
readonly hasPendingWrites: boolean;
472475
// (undocumented)
473-
isEqual(other: firestore.SnapshotMetadata): boolean;
476+
isEqual(other: SnapshotMetadata_2): boolean;
474477
}
475478

476479
// @public (undocumented)

packages/firestore/rollup.config.exp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import typescriptPlugin from 'rollup-plugin-typescript2';
2222
import typescript from 'typescript';
2323
import path from 'path';
2424
import replace from 'rollup-plugin-replace';
25-
import copy from 'rollup-plugin-copy-assets';
25+
import copy from 'rollup-plugin-copy';
2626
import { terser } from 'rollup-plugin-terser';
2727
import { importPathTransformer } from '../../scripts/exp/ts-transform-import-path';
2828

0 commit comments

Comments
 (0)