Skip to content

Commit

Permalink
Merge pull request #126 from Charlie789/dev
Browse files Browse the repository at this point in the history
refactor: changed return type for handleChanges in useDragging Params
  • Loading branch information
KarimMokhtar committed Aug 21, 2023
2 parents 37f6668 + 5c26c51 commit c546c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/useDragging.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type Params = {
labelRef: any;
inputRef: any;
multiple?: boolean | false;
handleChanges: (arg0: Array<File>) => void;
handleChanges: (arg0: Array<File>) => boolean;
onDrop?: (arg0: Array<File>) => void;
};

Expand Down

0 comments on commit c546c7b

Please sign in to comment.