infinity-forge
Version:
21 lines (20 loc) • 673 B
TypeScript
import { InputProps, DragAndDropListProps } from '../../../../ui/index.js';
export type UploadOptions = {
version?: 'v1' | 'v2';
apiUrl?: string;
auth?: boolean;
};
export type InputFileProps = {
upload?: UploadOptions;
inputFileConfigurations?: {
styleVersion: 'v1' | 'v2';
};
isLocalFile?: boolean;
sizeImageFile?: string;
sizeImageFileMobile?: string;
enableMobileImage?: boolean;
isAccumalativeFile?: boolean;
maxItemWidth?: DragAndDropListProps<any>['maxItemWidth'];
omitSelectFile?: boolean;
};
export declare function InputFile(props: InputProps & InputFileProps): import("react/jsx-runtime").JSX.Element;