12345678910111213141516171819202122232425 |
- import { XEUtilsMethods } from '../xe-utils'
- export declare function lastEachIterate(item: any, index: any, obj: any): any;
- /**
- * 通用迭代器,从最后开始迭代
- * @param obj 对象
- * @param iteratee 回调
- * @param context 上下文
- */
- export declare function lastEach(obj: any, iteratee: typeof lastEachIterate, context?: any): void;
- declare module '../xe-utils' {
- interface XEUtilsMethods {
- /**
- * 通用迭代器,从最后开始迭代
- * @param obj 对象
- * @param iteratee 回调
- * @param context 上下文
- */
- lastEach: typeof lastEach;
- }
- }
- export default lastEach
|