UNPKG

react-fatless-form

Version:

A lightweight React form package designed for simplicity that simplifies form handling and validation without unnecessary complexity or bloat.

7 lines (6 loc) 262 B
export declare function useFileSelection(fileArray: File[], onChange: (files: FileList | null) => void): { selectedFiles: Set<File>; handleToggleSelect: (file: File) => void; handleRemoveSelectedFiles: () => void; handleSelectAll: () => void; };