@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
8 lines (7 loc) • 817 B
TypeScript
import { UploadButtonProps } from '@rpldy/upload-button';
import type { ComponentType } from 'react';
type FileInputProps = {
accept: string;
};
declare const asUploadButton: (Component: ComponentType<any>, inputProps: FileInputProps) => import("react").ForwardRefExoticComponent<Pick<UploadButtonProps<Element>, "id" | "className" | "text" | "children" | "onClick" | "method" | "headers" | "paramName" | "params" | "forceJsonResponse" | "withCredentials" | "formatGroupParamName" | "sendWithFormData" | "formDataAllowUndefined" | "formatServerResponse" | "isSuccessfulCall" | "destination" | "fileFilter" | "autoUpload" | "clearPendingOnAdd" | "grouped" | "maxGroupSize" | "inputFieldName" | "fastAbortThreshold" | "userData" | "extraProps"> & import("react").RefAttributes<any>>;
export default asUploadButton;