()
| 318 | } |
| 319 | |
| 320 | reload(): Promise<void> { |
| 321 | return new Promise((resolve, reject) => { |
| 322 | if (!this.native) { |
| 323 | reject(); |
| 324 | } else { |
| 325 | this.native.reloadWithCompletion((error) => { |
| 326 | if (error) { |
| 327 | reject(FirebaseError.fromNative(error)); |
| 328 | } else { |
| 329 | resolve(); |
| 330 | } |
| 331 | }); |
| 332 | } |
| 333 | }); |
| 334 | } |
| 335 | |
| 336 | sendEmailVerification(actionCodeSettings?: ActionCodeSettings): Promise<void> { |
| 337 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected