| 2 | |
| 3 | declare global { |
| 4 | interface Window { |
| 5 | __WEBGAL_DEVICE_INFO__?: { |
| 6 | isIOS: boolean; |
| 7 | isIOSPhone: boolean; |
| 8 | isIPad: boolean; |
| 9 | }; |
| 10 | electronFuncs?: { |
| 11 | steam?: { |
| 12 | initialize: (appId: string) => boolean | Promise<boolean>; |
| 13 | unlockAchievement: (achievementId: string) => boolean | Promise<boolean>; |
| 14 | }; |
| 15 | }; |
| 16 | } |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected