interface IGetValidValues { (values: any): any; } /** * 处理数据,仅保留有用的值,有用的概念为:非空字符串,非空对象,非空数组,非undefined,非null * @param values * @returns values * @example { a: '', b: {}, c: [], d: undefined, e: null, f: 0, g: { gg: [{}] }, h: [{ hh: [] }] } * */ declare const getValidValues: IGetValidValues; export default getValidValues;