// Type definitions for object-map 1.0 // Project: https://github.com/xixixao/object-map // Definitions by: Wolfgang Faust // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare function objectMap( target: {[k: string]: TInput}, callback: (this: TThis, currentValue: TInput, key: string, object: {[k: string]: TInput}) => TOutput, thisArg?: TThis ): {[k: string]: TOutput}; export = objectMap;