@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
25 lines • 905 B
TypeScript
import { IReactCSSProperties } from '../../../../types/react/IReactCSSTypes';
import { IMIMETypesObject } from './fps-FileDropTypes';
import { IFileNameHandleBars } from './IFileNameHandleBars';
export interface IFileDropBoxProps {
useDropBox?: boolean;
maxUploadCount?: number;
fileMaxSize?: number;
fileWarnSize?: number;
fileTypes?: IMIMETypesObject[];
fileNameHandleBars: IFileNameHandleBars;
setParentFilesData: (files: File[]) => void;
style?: IReactCSSProperties;
refreshId?: string;
resetId: string;
}
export declare const changesFileDropBox: (keyof IFileDropBoxWPProps)[];
export interface IFileDropBoxWPProps {
defaultPasteMode?: boolean;
maxUploadCount: string;
fileMaxSize?: string;
fileWarnSize?: string;
fileTypes?: string[];
fileNameHandleBars: string;
}
//# sourceMappingURL=IFileDropBoxProps.d.ts.map