/** * 判断空对象,空数组,空字符串 * @param obj 数组或者对象或者字符串 * @returns boolean */ export default function isEmpty(obj: Array | Object | string): boolean;