NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/array/pluck.d.ts

24 lines
487 B
TypeScript
Raw Normal View History

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