File tree 2 files changed +11
-1
lines changed
packages/firestore/lite/src/api
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @firebase/firestore " : patch
3
+ ---
4
+
5
+ Internal changes to support upcoming modular API.
Original file line number Diff line number Diff line change @@ -123,9 +123,14 @@ export class Transaction {
123
123
*
124
124
* @param documentRef A reference to the document to be set.
125
125
* @param data An object of the fields and values for the document.
126
+ * @param options An object to configure the set behavior.
126
127
* @return This `Transaction` instance. Used for chaining method calls.
127
128
*/
128
- set < T > ( documentRef : DocumentReference < T > , data : Partial < T > ) : this;
129
+ set < T > (
130
+ documentRef : DocumentReference < T > ,
131
+ data : Partial < T > ,
132
+ options : SetOptions
133
+ ) : this;
129
134
set < T > (
130
135
documentRef : DocumentReference < T > ,
131
136
value : T ,
You can’t perform that action at this time.
0 commit comments