UNPKG

@uppy/provider-views

Version:

View library for Uppy remote provider plugins.

15 lines 606 B
import type { PartialTreeFile, PartialTreeFolderNode } from '@uppy/core'; import type { h } from 'preact'; type GridItemProps = { file: PartialTreeFile | PartialTreeFolderNode; toggleCheckbox: (event: Event) => void; className: string; isDisabled: boolean; restrictionError: string | null; showTitles: boolean; children?: h.JSX.Element | null; i18n: any; }; declare function GridItem({ file, toggleCheckbox, className, isDisabled, restrictionError, showTitles, children, i18n, }: GridItemProps): h.JSX.Element; export default GridItem; //# sourceMappingURL=GridItem.d.ts.map