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
/
sorting-instruction.d.ts
7 lines
(6 loc)
•
205 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
SortOrder
}
from
'./enumeration/sort-order'
;
export
declare
class
SortingInstruction
{
column
:
string
;
direction
:
SortOrder
;
constructor
(
column
:
string
,
direction
:
SortOrder
); }