react-native-file-picker
react-native-file-picker copied to clipboard
please change types setting in index.d.ts
Error
Property 'didCancel' does not exist on type 'FilePickerResult'.
Property 'didCancel' does not exist on type 'FilePickerError'.
Solution
from
export type FilePickerResult =
| FilePickerCancel
| FilePickerError
| FilePickerFile
to
export type FilePickerResult =
& FilePickerCancel
& FilePickerError
& FilePickerFile