UNPKG

@fakel/rest-admin

Version:

An application that makes it easier to work with your API

14 lines (13 loc) 454 B
import React from 'react'; import { UploadHandler } from './Gallery'; import { ImageT } from '../../stores/ImagesStore'; export declare type OnOK = (images: ImageT | ImageT[]) => void; declare type GalleryFooterProps = { uploadHandler: UploadHandler; setVisible: (visible: boolean) => void; isMultiple?: boolean; onOk: OnOK; showSelectAll?: boolean; }; export declare const GalleryViewFooter: React.FC<GalleryFooterProps>; export {};