each.d.ts 320 B

1234567891011121314
  1. import types = require('./types');
  2. declare function each<T>(
  3. list: types.List<T>,
  4. iterator: types.ListIterator<T, void>,
  5. ctx?: any
  6. ): types.List<T>;
  7. declare function each<T>(
  8. object: types.Dictionary<T>,
  9. iterator: types.ObjectIterator<T, void>,
  10. ctx?: any
  11. ): types.Collection<T>;
  12. export = each;