(isTouchDevice: boolean)
| 65 | } |
| 66 | |
| 67 | export function getTouchModeAutoAction(isTouchDevice: boolean): TouchModeStartupAction | null { |
| 68 | if (!isTouchDevice) return null; |
| 69 | |
| 70 | return { |
| 71 | enabled: true, |
| 72 | source: 'auto', |
| 73 | logMessage: APP_TOUCH_AUTO_LOG_MESSAGE, |
| 74 | }; |
| 75 | } |
| 76 | |
| 77 | export function getShareSelectedImageId(config: ShareConfig | null | undefined): number | null { |
| 78 | const selectedImageId = config?.camera?.selectedImageId; |
no outgoing calls
no test coverage detected