@lunit/oui
Version:
Lunit Oncology UI components
15 lines (14 loc) • 373 B
TypeScript
import { UppyFile } from '@uppy/core';
export interface UploadFileProps {
file: UppyFile;
onCancel?: (id: string) => void;
onRetry?: (id: string) => void;
}
export interface UploadManagerProps {
title: string;
subTitle?: string;
files: UppyFile[];
onClose?: () => void;
onCancel?: (id: string) => void;
onRetry?: (id: string) => void;
}