Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/eqNull.d.ts
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

14 lines
227 B
TypeScript

/**
* 判断是否 undefined 和 null
* @param obj 对象
*/
export declare function eqNull(obj: any): boolean;
declare module './ctor' {
interface XEUtilsMethods {
eqNull: typeof eqNull;
}
}
export default eqNull