UNPKG

preline

Version:

Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.

11 lines (9 loc) 241 B
import { DropzoneOptions } from 'dropzone'; export interface IFileUploadOptions extends DropzoneOptions { extensions?: {}; autoHideTrigger?: boolean; singleton?: boolean; } export interface IFileUpload { options?: IFileUploadOptions; }