feat(call-log): add operator 'like' and array of values

This commit is contained in:
Nicolas 2018-03-22 22:42:45 +01:00
parent 5e40f3412a
commit 84cecf7841

View File

@ -3,8 +3,8 @@ import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
export interface CallLogObject {
name: string;
value: string;
operator: '==' | '!=' | '>' | '>=' | '<' | '<=';
value: string|Array<string>;
operator: '==' | '!=' | '>' | '>=' | '<' | '<=' | 'like';
}
/**