NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/base/isPlainObject.d.ts
2023-09-14 14:47:11 +08:00

20 lines
372 B
TypeScript

import { XEUtilsMethods } from '../xe-utils'
/**
* 判断是否是一个对象
* @param val 值
*/
export declare function isPlainObject(val: any): boolean;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
* 判断是否是一个对象
* @param val 值
*/
isPlainObject: typeof isPlainObject;
}
}
export default isPlainObject