UNPKG

react-uploadify

Version:

`ReactUploadify` is a flexible npm package that simplifies the process of uploading images from a user's device to a web browser. It offers a set of components and utilities to manage image uploads effectively within React applications.

26 lines (25 loc) 874 B
import { DetailsType, ErrorType } from "./types"; export declare const imagesToSave: import("jotai").PrimitiveAtom<Blob[]> & { init: Blob[]; }; export declare const jotaiImages: import("jotai").PrimitiveAtom<string[]> & { init: string[]; }; export declare const jotaiLimitCount: import("jotai").PrimitiveAtom<number> & { init: number; }; export declare const jotaiFileLimit: import("jotai").PrimitiveAtom<number> & { init: number; }; export declare const jotaiFileSizeLimit: import("jotai").PrimitiveAtom<string> & { init: string; }; export declare const jotaiIsDraggedOver: import("jotai").PrimitiveAtom<boolean> & { init: boolean; }; export declare const jotaiError: import("jotai").PrimitiveAtom<ErrorType> & { init: ErrorType; }; export declare const jotaiDetails: import("jotai").PrimitiveAtom<DetailsType[]> & { init: DetailsType[]; };