reject.d.ts 314 B

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