UNPKG

petals-ui

Version:
18 lines (13 loc) 376 B
import { FileFormControlValue } from '../../form-control'; type UploadFile = FileFormControlValue & { name: string; url: string; }; type FileUploadValue = UploadFile[]; type FileUploadRequestOption = { name?: string; method?: string; data?: { [key: string]: any }; withCredentials?: boolean; }; export { UploadFile, FileUploadValue, FileUploadRequestOption };