(host: string, port: number)
| 1522 | } |
| 1523 | |
| 1524 | useEmulator(host: string, port: number) { |
| 1525 | this.native.useEmulator(host === 'localhost' || host === '127.0.0.1' ? '10.0.2.2' : host, port); |
| 1526 | } |
| 1527 | |
| 1528 | static fromNative(store: com.google.firebase.firestore.FirebaseFirestore) { |
| 1529 | if (store instanceof com.google.firebase.firestore.FirebaseFirestore) { |
nothing calls this directly
no test coverage detected