Skip to content

Commit

Permalink
fix(types): missing type definition for 'donePressed' parameter in 'o…
Browse files Browse the repository at this point in the history
…nClose' callback (#545)
  • Loading branch information
rhnorskov committed Apr 1, 2024
1 parent a5f5e10 commit d39f880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export interface PickerSelectProps {
onDonePress?: () => void;
onUpArrow?: () => void;
onDownArrow?: () => void;
onClose?: () => void;
onClose?: (donePressed: boolean) => void;
modalProps?: CustomModalProps;
textInputProps?: CustomTextInputProps;
pickerProps?: CustomPickerProps;
Expand Down

0 comments on commit d39f880

Please sign in to comment.