| 19 | // We declare variables used on the window object |
| 20 | // We use a custom interface to avoid these modifying the global Window type in other files |
| 21 | interface CustomWindow extends Window { |
| 22 | signingIn?: boolean; |
| 23 | verifyingCode?: boolean; |
| 24 | confirmationResult?: ConfirmationResult | null; |
| 25 | recaptchaVerifier?: RecaptchaVerifier; |
| 26 | recaptchaWidgetId?: number; |
| 27 | } |
| 28 | |
| 29 | declare const window: CustomWindow; |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected