NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/base/has.d.ts

22 lines
471 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { XEUtilsMethods } from '../xe-utils'
/**
*
* @param obj
* @param property
*/
export declare function has(obj: any, property: string | string[]): boolean;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
*
* @param obj
* @param property
*/
has: typeof has;
}
}
export default has