UNPKG

di-shan-utils

Version:

JavaScript 函数库、工具类

14 lines (11 loc) 288 B
/** * 已废弃 * @deprecated */ export declare function lastForOf<C>(obj: any, iterate: (this: C, item: any, index: any, obj: any) => boolean, context?: C): void; declare module './ctor' { interface DIUtilsMethods { lastForOf: typeof lastForOf; } } export default lastForOf