/** * 判断值是否为 object(不包括 null) * * @param value 需要进行判断的值 * @returns {value is object} true 为 object,false 为其他类型 */ export declare const isObj: (value: any) => value is Record; export type IsObjType = typeof isObj;