UNPKG

@im-ian/react-survey

Version:

2018~2019년에 제작했던 React 설문 모듈입니다. 아카이브 용도로 업로드 되었습니다.

10 lines (8 loc) 279 B
import { FilePondFile } from "filepond"; import { IBlocks } from "../../@types/block"; export interface IBlockPresenter { block: IBlocks; onFileUpload?: (file: FilePondFile) => void; onFileRemove?: (file: FilePondFile) => void; onUpdateBlock: (data: IBlocks) => void; }