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

26 lines
629 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { XEUtilsMethods } from '../xe-utils'
export declare function findIndexOfIterate(item: any, index: any, obj: any): any;
/**
*
* @param obj
* @param iteratee
* @param context
*/
export declare function findIndexOf(obj: any, iteratee: typeof findIndexOfIterate, context?: any): any;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
*
* @param obj
* @param iteratee
* @param context
*/
findIndexOf: typeof findIndexOf;
}
}
export default findIndexOf