(store: FIRFirestore)
| 1354 | } |
| 1355 | |
| 1356 | static fromNative(store: FIRFirestore) { |
| 1357 | if (store instanceof FIRFirestore) { |
| 1358 | const firestore = new Firestore(); |
| 1359 | firestore._native = store; |
| 1360 | return firestore; |
| 1361 | } |
| 1362 | return null; |
| 1363 | } |
| 1364 | |
| 1365 | useEmulator(host: string, port: number) { |
| 1366 | this.native.useEmulatorWithHostPort(host, port); |
nothing calls this directly
no outgoing calls
no test coverage detected