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

feat(call-log): add operator 'like' and array of values
This commit is contained in:
Daniel Sogl
2018-03-23 08:16:19 +01:00
committed by GitHub
+2 -2
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';
}
/**