MOBILE-3269 core: Fix return type of objectToKeyValueMap

main
Dani Palou 2020-03-10 15:32:18 +01:00
parent 4442a182e6
commit d9e851373e
1 changed files with 1 additions and 1 deletions

View File

@ -1105,7 +1105,7 @@ export class CoreUtilsProvider {
* @param keyPrefix Key prefix if neededs to delete it.
* @return Object.
*/
objectToKeyValueMap(objects: object[], keyName: string, valueName: string, keyPrefix?: string): object {
objectToKeyValueMap(objects: object[], keyName: string, valueName: string, keyPrefix?: string): {[name: string]: any} {
if (!objects) {
return;
}