@@ -1679,18 +1679,18 @@ firebase.firestore.WriteBatch = (nativeWriteBatch: FIRWriteBatch): firestore.Wri
16791679 fixSpecialFields ( data ) ;
16801680 nativeWriteBatch . setDataForDocumentMerge ( < any > data , documentRef . ios , options && options . merge ) ;
16811681 return this ;
1682- } ;
1682+ }
16831683
16841684 public update = ( documentRef : firestore . DocumentReference , data : firestore . UpdateData ) : firestore . WriteBatch => {
16851685 fixSpecialFields ( data ) ;
16861686 nativeWriteBatch . updateDataForDocument ( < any > data , documentRef . ios ) ;
16871687 return this ;
1688- } ;
1688+ }
16891689
16901690 public delete = ( documentRef : firestore . DocumentReference ) : firestore . WriteBatch => {
16911691 nativeWriteBatch . deleteDocument ( documentRef . ios ) ;
16921692 return this ;
1693- } ;
1693+ }
16941694
16951695 commit ( ) : Promise < void > {
16961696 return new Promise < void > ( ( resolve , reject ) => {
@@ -1716,19 +1716,19 @@ firebase.firestore.Transaction = (nativeTransaction: FIRTransaction): firestore.
17161716 public get = ( documentRef : firestore . DocumentReference ) : DocumentSnapshot => {
17171717 const docSnapshot : FIRDocumentSnapshot = nativeTransaction . getDocumentError ( documentRef . ios ) ;
17181718 return new DocumentSnapshot ( docSnapshot ) ;
1719- } ;
1719+ }
17201720
17211721 public set = ( documentRef : firestore . DocumentReference , data : firestore . DocumentData , options ?: firestore . SetOptions ) : firestore . Transaction => {
17221722 fixSpecialFields ( data ) ;
17231723 nativeTransaction . setDataForDocumentMerge ( < any > data , documentRef . ios , options && options . merge ) ;
17241724 return this ;
1725- } ;
1725+ }
17261726
17271727 public update = ( documentRef : firestore . DocumentReference , data : firestore . UpdateData ) : firestore . Transaction => {
17281728 fixSpecialFields ( data ) ;
17291729 nativeTransaction . updateDataForDocument ( < any > data , documentRef . ios ) ;
17301730 return this ;
1731- } ;
1731+ }
17321732
17331733 public delete = ( documentRef : firestore . DocumentReference ) : firestore . Transaction => {
17341734 nativeTransaction . deleteDocument ( documentRef . ios ) ;
@@ -2117,7 +2117,7 @@ firebase.firestore.getCollection = (collectionPath: string, options?: firestore.
21172117 let source = FIRFirestoreSource . Default ;
21182118 if ( options && options . source ) {
21192119 if ( options . source === "cache" ) {
2120- source = FIRFirestoreSource . Cache
2120+ source = FIRFirestoreSource . Cache ;
21212121 } else if ( options . source === "server" ) {
21222122 source = FIRFirestoreSource . Server ;
21232123 }
@@ -2156,7 +2156,7 @@ firebase.firestore.getDocument = (collectionPath: string, documentPath: string,
21562156 let source = FIRFirestoreSource . Default ;
21572157 if ( options && options . source ) {
21582158 if ( options . source === "cache" ) {
2159- source = FIRFirestoreSource . Cache
2159+ source = FIRFirestoreSource . Cache ;
21602160 } else if ( options . source === "server" ) {
21612161 source = FIRFirestoreSource . Server ;
21622162 }
0 commit comments