source: trip-planner-front/node_modules/primeng/api/filtermatchmode.d.ts@ e29cc2e

Last change on this file since e29cc2e was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 893 bytes
Line 
1export declare class FilterMatchMode {
2 static readonly STARTS_WITH = "startsWith";
3 static readonly CONTAINS = "contains";
4 static readonly NOT_CONTAINS = "notContains";
5 static readonly ENDS_WITH = "endsWith";
6 static readonly EQUALS = "equals";
7 static readonly NOT_EQUALS = "notEquals";
8 static readonly IN = "in";
9 static readonly LESS_THAN = "lt";
10 static readonly LESS_THAN_OR_EQUAL_TO = "lte";
11 static readonly GREATER_THAN = "gt";
12 static readonly GREATER_THAN_OR_EQUAL_TO = "gte";
13 static readonly BETWEEN = "between";
14 static readonly IS = "is";
15 static readonly IS_NOT = "isNot";
16 static readonly BEFORE = "before";
17 static readonly AFTER = "after";
18 static readonly DATE_IS = "dateIs";
19 static readonly DATE_IS_NOT = "dateIsNot";
20 static readonly DATE_BEFORE = "dateBefore";
21 static readonly DATE_AFTER = "dateAfter";
22}
Note: See TracBrowser for help on using the repository browser.