UNPKG

mmp-common

Version:

A demonstration of creating a NPM library for TSG common components that supports different installation types.

10 lines (9 loc) 336 B
/// <reference types="react" /> export interface DropzoneProps { allowMultipleUploads: boolean; acceptedFileTypes: string; onFileChoice(event: React.ChangeEvent<HTMLInputElement>): void; onFileDrop?: (event: React.DragEvent<HTMLDivElement>) => void; clickableElement?: JSX.Element; fileName?: string; }