/** * 检查输入的值是否为 空数组 * * @example * * isEmptyArray([]); //=>true * isEmptyArray(Object([])); //=>true * isEmptyArray([0]); //=>false * isEmptyArray({length:0}); //=>false */ export declare function isEmptyArray(value: any): boolean;