/** * 判断当前内容是否是 undefined 或者 null * @param object - 任何东西 */ declare function isNil(object: any): object is undefined | null; export { isNil };