UNPKG

xhy-xe-utils

Version:
23 lines (20 loc) 574 B
import { XEUtilsMethods } from '../xe-utils' /** * 对象迭代器,从最后开始迭代 * @param obj 对象 * @param iteratee 回调 * @param context 上下文 */ export declare function lastObjectEach(obj: any, iteratee: Function, context ?: any): void; declare module '../xe-utils' { interface XEUtilsMethods { /** * 对象迭代器,从最后开始迭代 * @param obj 对象 * @param iteratee 回调 * @param context 上下文 */ lastObjectEach: typeof lastObjectEach; } } export default lastObjectEach