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

14 lines
307 B
TypeScript

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