UNPKG
@freedomds/shared-pagination
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
FDS-Shared - Helper types for grid pagination, sorting and filtering
@freedomds/shared-pagination
/
src
/
filter.d.ts
8 lines
(7 loc)
•
243 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
FilterMatchMode
}
from
'./enumeration/filter-match-mode'
;
export
declare
class
Filter
{
key
:
string
;
values
:
any
;
matchMode
:
FilterMatchMode
;
constructor
(
key
:
string
,
values
:
any
,
matchMode
:
FilterMatchMode
); }