File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1394,7 +1394,7 @@ export namespace FirebaseFirestoreTypes {
1394
1394
/**
1395
1395
* Enables or disables local persistent storage.
1396
1396
*/
1397
- persistence : boolean ;
1397
+ persistence ? : boolean ;
1398
1398
1399
1399
/**
1400
1400
* An approximate cache size threshold for the on-disk data. If the cache grows beyond this size, Firestore will start
@@ -1403,7 +1403,7 @@ export namespace FirebaseFirestoreTypes {
1403
1403
*
1404
1404
* To disable garbage collection and set an unlimited cache size, use `firebase.firestore.CACHE_SIZE_UNLIMITED`.
1405
1405
*/
1406
- cacheSizeBytes : number ;
1406
+ cacheSizeBytes ? : number ;
1407
1407
1408
1408
/**
1409
1409
* The hostname to connect to.
@@ -1413,12 +1413,12 @@ export namespace FirebaseFirestoreTypes {
1413
1413
* If you want to use the emulator on a real android device, you will need to specify the actual host
1414
1414
* computer IP address.
1415
1415
*/
1416
- host : string ;
1416
+ host ? : string ;
1417
1417
1418
1418
/**
1419
1419
* Whether to use SSL when connecting.
1420
1420
*/
1421
- ssl : boolean ;
1421
+ ssl ? : boolean ;
1422
1422
}
1423
1423
1424
1424
/**
You can’t perform that action at this time.
0 commit comments