From 7f274ba9a359aba95dbc601010dac1589b2da1cc Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 8 Apr 2018 19:27:40 +0200 Subject: [PATCH] docs(call-log): fix jsdoc --- src/@ionic-native/plugins/call-log/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/call-log/index.ts b/src/@ionic-native/plugins/call-log/index.ts index 43608abb5..67832e9d5 100644 --- a/src/@ionic-native/plugins/call-log/index.ts +++ b/src/@ionic-native/plugins/call-log/index.ts @@ -3,7 +3,7 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core'; export interface CallLogObject { name: string; - value: string|Array; + value: string | Array; operator: '==' | '!=' | '>' | '>=' | '<' | '<=' | 'like'; } @@ -35,7 +35,7 @@ export interface CallLogObject { export class CallLog extends IonicNativePlugin { /** * This function return the call logs - * @param filters {CallLogObject[]} array of object to filter the query + * @param {CallLogObject[]} filters array of object to filter the query * @return {Promise} */ @Cordova()