File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -5721,7 +5721,10 @@ declare namespace firebase.storage {
5721
5721
*/
5722
5722
on (
5723
5723
event : firebase . storage . TaskEvent ,
5724
- nextOrObserver ?: firebase . Observer < any > | null | ( ( a : Object ) => any ) ,
5724
+ nextOrObserver ?:
5725
+ | firebase . Observer < UploadTaskSnapshot >
5726
+ | null
5727
+ | ( ( a : UploadTaskSnapshot ) => any ) ,
5725
5728
error ?: ( ( a : Error ) => any ) | null ,
5726
5729
complete ?: ( firebase . Unsubscribe ) | null
5727
5730
) : Function ;
@@ -7209,14 +7212,14 @@ declare namespace firebase.firestore {
7209
7212
/**
7210
7213
* Returns a special value that can be used with `set()` or `update()` that tells
7211
7214
* the server to increment the field's current value by the given value.
7212
- *
7215
+ *
7213
7216
* If either the operand or the current field value uses floating point precision,
7214
7217
* all arithmetic follows IEEE 754 semantics. If both values are integers,
7215
7218
* values outside of JavaScript's safe number range (`Number.MIN_SAFE_INTEGER` to
7216
7219
* `Number.MAX_SAFE_INTEGER`) are also subject to precision loss. Furthermore,
7217
7220
* once processed by the Firestore backend, all integer operations are capped
7218
7221
* between -2^63 and 2^63-1.
7219
- *
7222
+ *
7220
7223
* If the current field value is not of type `number`, or if the field does not
7221
7224
* yet exist, the transformation sets the field to the given value.
7222
7225
*
You can’t perform that action at this time.
0 commit comments