forked from invertase/react-native-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
type-test.ts
39 lines (30 loc) · 958 Bytes
/
type-test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import firebase from '@react-native-firebase/app';
import * as config from '@react-native-firebase/remote-config';
console.log(config.default().app);
// checks module exists at root
console.log(firebase.remoteConfig().app.name);
// checks module exists at app level
console.log(firebase.app().remoteConfig().app.name);
// checks statics exist
console.log(firebase.remoteConfig.SDK_VERSION);
// checks statics exist on defaultExport
console.log(firebase.SDK_VERSION);
// checks root exists
console.log(firebase.SDK_VERSION);
// checks firebase named export exists on module
console.log(config.firebase.SDK_VERSION);
console.log(firebase.remoteConfig().lastFetchStatus);
console.log(firebase.remoteConfig().lastFetchTime);
firebase
.remoteConfig()
.fetch()
.then();
firebase
.remoteConfig()
.fetch(123)
.then();
firebase.remoteConfig().getAll();
firebase
.remoteConfig()
.setConfigSettings({ isDeveloperModeEnabled: true })
.then();