You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
358 B

/**
* 这里主要是来转化一下数据
* 将 moment 转化为 string
* 将 all 默认删除
* @param value
* @param dateFormatter
* @param proColumnsMap
*/
declare const conversionSubmitValue: <T = any>(value: T, dateFormatter: 'number' | 'string' | false, valueTypeMap: {
[key: string]: string;
}) => T;
export default conversionSubmitValue;