invoke.d.ts 396 B

123456789101112131415
  1. /**
  2. * 在list的每个元素上执行方法,任何传递的额外参数都会在调用方法的时候传递给它
  3. * @param list 数组
  4. * @param path
  5. * @example
  6. */
  7. export declare function invoke(list: any[], path: string[] | string | ((this: any, ...args: any[]) => any)): any[];
  8. declare module './ctor' {
  9. interface XEUtilsMethods {
  10. invoke: typeof invoke;
  11. }
  12. }
  13. export default invoke