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

20 lines
336 B
TypeScript

import { XEUtilsMethods } from '../xe-utils'
/**
* 获取对象第一个值
* @param obj 对象
*/
export declare function first(obj: any): any;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
* 获取对象第一个值
* @param obj 对象
*/
first: typeof first;
}
}
export default first