Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ interface ExtendedFirestoreInstance extends FirestoreTypes.FirebaseFirestore {
* transaction.
* @see https://github.com/prescottprue/redux-firestore#runtransaction
*/
runTransaction: typeof firebase.firestore.Firestore.runTransaction
runTransaction: typeof FirestoreTypes.FirebaseFirestore.prototype.runTransaction

/**
* Sets a listener within redux-firestore
Expand Down Expand Up @@ -678,8 +678,8 @@ interface ExtendedAuthInstance {
*/
updateAuth: (
authUpdate: {
displayName: string | null
photoURL: string | null
displayName?: string | null
photoURL?: string | null
},
updateInProfile?: boolean
) => Promise<void>
Expand Down