(wallet)
| 61 | } |
| 62 | |
| 63 | public checkWallet(wallet): Promise<any> { |
| 64 | return this.isAvailable().then((isAvailable: boolean) => { |
| 65 | if (!isAvailable) return undefined; |
| 66 | if (this.isNeeded(wallet)) return this.check(); |
| 67 | return undefined; |
| 68 | }); |
| 69 | } |
| 70 | |
| 71 | public getIosBiometricMethod(): string { |
| 72 | return this.iosBiometricMethod; |
no test coverage detected