/** * Represents a object that is passed to file uploader * */ export interface UploadFile { file: File; fileName: string; }