From 61c0ecfa4f50b61381e76c85f1d24f4770a213ed Mon Sep 17 00:00:00 2001 From: Nicolas Date: Tue, 30 Jan 2018 22:35:48 +0100 Subject: [PATCH] fix(call-log): update getCallLog signature --- src/@ionic-native/plugins/call-log/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/@ionic-native/plugins/call-log/index.ts b/src/@ionic-native/plugins/call-log/index.ts index 1438047fc..d7a541190 100644 --- a/src/@ionic-native/plugins/call-log/index.ts +++ b/src/@ionic-native/plugins/call-log/index.ts @@ -28,15 +28,13 @@ export class CallLog extends IonicNativePlugin { /** * This function return the call logs - * @param dateFrom {string} get logs from this date (format yyyy-MM-dd) - * @param dateTo {string} get logs until this date (format yyyy-MM-dd) * @param filters {object[]} array of object to filter the query * Object must respect this structure {'name':'...', 'value': '...', 'operator': '=='} * (see https://github.com/creacore-team/cordova-plugin-calllog for more details) * @return {Promise} */ @Cordova() - getCallLog(dateFrom: string, dateTo: string, filters: object[]): Promise { return; } + getCallLog(filters: object[]): Promise { return; } /** * Check permission