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
commit 3c6122e503
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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';
}
/**