each.d.ts 107 B

12
  1. declare function each(elements: any[] | object, func: (v: any, k: any) => any): void;
  2. export default each;