Merge branch 'master' into patch-1

This commit is contained in:
Pablo Kebees
2020-03-12 10:19:55 +01:00
committed by GitHub
7 changed files with 2416 additions and 2844 deletions

View File

@@ -447,7 +447,7 @@ export namespace FirebaseFirestoreTypes {
/**
* A DocumentSnapshot contains data read from a document in your Firestore database. The data can be extracted with
* .`data()` or `.get(<field>)` to get a specific field.
* .`data()` or `.get(:field)` to get a specific field.
*
* For a DocumentSnapshot that points to a non-existing document, any data access will return 'undefined'.
* You can use the `exists` property to explicitly verify a document's existence.
@@ -521,7 +521,7 @@ export namespace FirebaseFirestoreTypes {
/**
* A QueryDocumentSnapshot contains data read from a document in your Firestore database as part of a query.
* The document is guaranteed to exist and its data can be extracted with .data() or .get(<field>) to get a specific field.
* The document is guaranteed to exist and its data can be extracted with .data() or .get(:field) to get a specific field.
*
* A QueryDocumentSnapshot offers the same API surface as a DocumentSnapshot.
* Since query results contain only existing documents, the exists property will always be true and data() will never return 'undefined'.

View File

@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
s.source_files = 'ios/**/*.{h,m}'
s.dependency 'React'
s.dependency 'Firebase/Core', firebase_sdk_version
s.dependency 'Firebase/InAppMessagingDisplay', firebase_sdk_version
s.dependency 'Firebase/InAppMessaging', firebase_sdk_version
s.dependency 'RNFBApp'
s.static_framework = false
end