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

15 lines
290 B
TypeScript

/**
* 检查键、路径是否是该对象的属性
* @param obj 对象
* @param property 键、路径
*/
export declare function has(obj: any, property: string | string[]): boolean;
declare module './ctor' {
interface XEUtilsMethods {
has: typeof has;
}
}
export default has