Skip to content

Commit d39f880

Browse files
authored
fix(types): missing type definition for 'donePressed' parameter in 'onClose' callback (#545)
1 parent a5f5e10 commit d39f880

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export interface PickerSelectProps {
8282
onDonePress?: () => void;
8383
onUpArrow?: () => void;
8484
onDownArrow?: () => void;
85-
onClose?: () => void;
85+
onClose?: (donePressed: boolean) => void;
8686
modalProps?: CustomModalProps;
8787
textInputProps?: CustomTextInputProps;
8888
pickerProps?: CustomPickerProps;

0 commit comments

Comments
 (0)