mapObj.d.ts 220 B

123456789
  1. import types = require('./types');
  2. declare function mapObj<T, TResult>(
  3. object: types.Dictionary<T>,
  4. iterator: types.ObjectIterator<T, TResult>,
  5. context?: any
  6. ): types.Dictionary<TResult>;
  7. export = mapObj;