UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

10 lines (9 loc) 416 B
import { Entry } from 'alinea/core/Entry'; import { UploadDestination } from '../../hook/UseUploads.js'; export interface FileUploaderProps { destination?: UploadDestination; max?: number; toggleSelect?: (id: Entry) => void; position?: 'left' | 'right'; } export declare function FileUploader({ destination, max, toggleSelect, position }: FileUploaderProps): import("react/jsx-runtime").JSX.Element;