Skip to content

Commit

Permalink
fix: missing type definition for 'donePressed' parameter in 'onClose'…
Browse files Browse the repository at this point in the history
… callback
  • Loading branch information
rhnorskov authored and remarkablemark committed Apr 1, 2024
1 parent a5f5e10 commit 17140ec
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 17140ec

Please sign in to comment.