(host: string, port: number)
| 972 | } |
| 973 | |
| 974 | useEmulator(host: string, port: number) { |
| 975 | this.native.useEmulator(host === 'localhost' || host === '127.0.0.1' ? '10.0.2.2' : host, port); |
| 976 | } |
| 977 | |
| 978 | fetchSignInMethodsForEmail(email: string): Promise<string[]> { |
| 979 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected