Merge branch 'master' of github.com:invertase/react-native-firebase

This commit is contained in:
Elliot Hesp 2017-06-27 15:14:08 +01:00
commit 43410bbadd
1 changed files with 7 additions and 2 deletions

7
index.d.ts vendored
View File

@ -12,7 +12,12 @@ declare module "react-native-firebase" {
auth(): RNFirebase.auth.Auth;
on(type: string, handler: (msg: any) => void): any;
/** mimics firebase Web SDK */
database(): RNFirebase.database.Database;
database: {
(): RNFirebase.database.Database
ServerValue: {
TIMESTAMP: number
}
}
/**RNFirebase mimics the Web Firebase SDK Storage,
* whilst providing some iOS and Android specific functionality.
*/