interface FormDataContentDisposition { /** * */ type?: string; /** * */ fileName?: string; /** * */ creationDate?: string; /** * */ modificationDate?: string; /** * */ readDate?: string; /** * */ size?: number; /** * */ name?: string; } export default FormDataContentDisposition;