source: src/components/upload/types.ts

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 725 bytes
Line 
1import { DropzoneOptions } from 'react-dropzone';
2// @mui
3import { Theme, SxProps } from '@mui/material/styles';
4
5// ----------------------------------------------------------------------
6
7export interface CustomFile extends File {
8 path?: string;
9 preview?: string;
10 lastModifiedDate?: Date;
11}
12
13export interface UploadProps extends DropzoneOptions {
14 error?: boolean;
15 sx?: SxProps<Theme>;
16 thumbnail?: boolean;
17 placeholder?: React.ReactNode;
18 helperText?: React.ReactNode;
19 disableMultiple?: boolean;
20 //
21 file?: CustomFile | string | null;
22 onDelete?: VoidFunction;
23 //
24 files?: (File | string)[];
25 onUpload?: VoidFunction;
26 onRemove?: (file: CustomFile | string) => void;
27 onRemoveAll?: VoidFunction;
28}
Note: See TracBrowser for help on using the repository browser.