/** * 判断值是否为数组 * * @param value 需要进行判断的值 * @returns {value is any[]} true 为数组,false 不为数组 */ export declare const isArr: (value: any) => value is any[]; export type IsArrType = typeof isArr;