UNPKG

269 BTypeScriptView Raw
1type File = {
2 name:string;
3}
4type FileType = {
5 id: string;
6 file: File;
7};
8export interface FileRowProps {
9 onRemove: Function;
10 children?: Function;
11 file?: File;
12}
13
14declare const FileRow: React.ComponentType<FileRowProps>;
15
16export default FileRow;
\No newline at end of file