Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / docs-core / lib / Application / Window.ts
blob19d0f3f76564901a9a81f5831c08b57b23c41302
1 /**
2  * If window.Android or window.webkit.messageHandlers.iOS are not null,
3  * this means we are running inside the native Android or iOS app.
4  * These values are injected by the native apps directly.
5  */
6 export interface CustomWindow extends Window {
7   Android?: unknown
8   webkit?: {
9     messageHandlers?: {
10       iOS?: unknown
11     }
12   }