Merge branch 'master' of github.com:invertase/react-native-firebase
This commit is contained in:
commit
43410bbadd
|
@ -11,8 +11,13 @@ declare module "react-native-firebase" {
|
||||||
analytics(): RNFirebase.Analytics;
|
analytics(): RNFirebase.Analytics;
|
||||||
auth(): RNFirebase.auth.Auth;
|
auth(): RNFirebase.auth.Auth;
|
||||||
on(type: string, handler: (msg: any) => void): any;
|
on(type: string, handler: (msg: any) => void): any;
|
||||||
/** mimics firebase Web SDK */
|
/** mimics firebase Web SDK */
|
||||||
database(): RNFirebase.database.Database;
|
database: {
|
||||||
|
(): RNFirebase.database.Database
|
||||||
|
ServerValue: {
|
||||||
|
TIMESTAMP: number
|
||||||
|
}
|
||||||
|
}
|
||||||
/**RNFirebase mimics the Web Firebase SDK Storage,
|
/**RNFirebase mimics the Web Firebase SDK Storage,
|
||||||
* whilst providing some iOS and Android specific functionality.
|
* whilst providing some iOS and Android specific functionality.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue