Skip to content

Commit 61c0ecf

Browse files
committed
fix(call-log): update getCallLog signature
1 parent 4b9cf17 commit 61c0ecf

File tree

1 file changed

+1
-3
lines changed
  • src/@ionic-native/plugins/call-log

1 file changed

+1
-3
lines changed

src/@ionic-native/plugins/call-log/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,13 @@ export class CallLog extends IonicNativePlugin {
2828

2929
/**
3030
* This function return the call logs
31-
* @param dateFrom {string} get logs from this date (format yyyy-MM-dd)
32-
* @param dateTo {string} get logs until this date (format yyyy-MM-dd)
3331
* @param filters {object[]} array of object to filter the query
3432
* Object must respect this structure {'name':'...', 'value': '...', 'operator': '=='}
3533
* (see https://github.com/creacore-team/cordova-plugin-calllog for more details)
3634
* @return {Promise<any>}
3735
*/
3836
@Cordova()
39-
getCallLog(dateFrom: string, dateTo: string, filters: object[]): Promise<any> { return; }
37+
getCallLog(filters: object[]): Promise<any> { return; }
4038

4139
/**
4240
* Check permission

0 commit comments

Comments
 (0)