(host: string, port: number)
| 664 | } |
| 665 | |
| 666 | useEmulator(host: string, port: number) { |
| 667 | this.native.useEmulator(host === 'localhost' || host === '127.0.0.1' ? '10.0.2.2' : host, port); |
| 668 | } |
| 669 | |
| 670 | show(config: Config) { |
| 671 | return new Promise<IIdpResponse>((resolve, reject) => { |
nothing calls this directly
no test coverage detected