| 3 | import * as ImagePicker from 'expo-image-picker'; |
| 4 | |
| 5 | export interface ImageDetails { |
| 6 | path: string; |
| 7 | height: number; |
| 8 | width: number; |
| 9 | } |
| 10 | |
| 11 | interface ChooseImageButtonProps { |
| 12 | onChoose: (image: ImageDetails) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected