@apideck/file-picker
Version:
A React file picker component that works with the Apideck [File Storage API](https://developers.apideck.com/apis/file-storage/reference).
12 lines (11 loc) • 355 B
TypeScript
/// <reference types="react" />
interface IProps {
data: any[];
isLoading?: boolean;
isLoadingMore?: boolean;
handleSelect: any;
searchMode: boolean;
uploadingMode: boolean;
}
declare const FilesTable: ({ data, isLoadingMore, handleSelect, searchMode, uploadingMode }: IProps) => JSX.Element;
export default FilesTable;