From 8cd648db5cddd7bdbe2bd78839b19c620cc8c04c Mon Sep 17 00:00:00 2001 From: Ibby Date: Mon, 20 Mar 2017 16:20:46 -0400 Subject: [PATCH] fix(health): fix queryAggregated return type closes #1200 --- src/plugins/health.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/health.ts b/src/plugins/health.ts index 920550f96..25cadef7b 100644 --- a/src/plugins/health.ts +++ b/src/plugins/health.ts @@ -273,11 +273,11 @@ export class Health { * To be sure to get all the stored quantities, it's better to query single nutrients. * nutrition.vitamin_a is given in micrograms in HealthKit and International Unit in Google Fit. * - * @param queryOptionsAggregated - * @return {Promise} + * @param queryOptionsAggregated {HealthQueryOptionsAggregated} + * @return {Promise} */ @Cordova() - static queryAggregated(queryOptionsAggregated: HealthQueryOptionsAggregated): Promise { + static queryAggregated(queryOptionsAggregated: HealthQueryOptionsAggregated): Promise { return; };