We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 986bc14 commit b6c395fCopy full SHA for b6c395f
src/providers/firestore.ts
@@ -73,12 +73,12 @@ export class NamespaceBuilder {
73
74
export interface DeltaDocumentSnapshot {
75
exists: Boolean;
76
- ref: any;
+ ref: firebase.firestore.DocumentReference;
77
id: string;
78
- createTime: string;
79
- updateTime: string;
80
- readTime: string;
81
- previous: any;
+ createTime?: string;
+ updateTime?: string;
+ readTime?: string;
+ previous: DeltaDocumentSnapshot;
82
data: () => any;
83
get: (key: string) => any;
84
};
0 commit comments