/** * @since 2.0.0-beta.2 * * @packageDocumentation */ /*! * @maddimathon/utility-typescript@2.0.0-beta.2 * @license MIT */ /** * Maps a single-level object's properties to new values based on a callback * function. * * @since 2.0.0-beta.2 */ export declare function objectMapAsync(objPromise: T_Obj | Promise, callback: (entry: [ keyof T_Obj, T_Obj[keyof T_Obj] ]) => T_NewValue | Promise): Promise<{ [K in keyof T_Obj]: T_NewValue; }>; //# sourceMappingURL=objectMapAsync.d.ts.map