django-vue3-admin-web/node_modules/xe-utils/pluck.d.ts
2025-10-20 21:21:14 +08:00

16 lines
317 B
TypeScript

/**
* 获取数组对象中某属性值,返回一个数组
* @param array 数组
* @param key 键
* @example
*/
export declare function pluck(array: any[], key: string | number): any[];
declare module './ctor' {
interface XEUtilsMethods {
pluck: typeof pluck;
}
}
export default pluck