UNPKG
@stratio/egeo
Version:
canary (2.2.0-20170529.0)
latest (22.0.0)
22.0.0
21.1.0
21.0.1
21.0.0
20.1.0
20.0.1
20.0.0
19.0.0
18.0.3
18.0.2
18.0.1
18.0.0
17.2.1
17.2.0
17.1.1
17.1.0
17.0.0
16.4.2
16.4.1
16.4.0
16.3.0
16.2.1
16.2.0
16.1.0
16.0.0
15.0.4
15.0.3
15.0.2
15.0.1
14.0.0
13.4.1
13.4.0
13.3.0
13.2.2
13.2.1
13.2.0
13.1.1
13.1.0
13.0.0
12.0.0
11.5.1
11.5.0
11.4.0
11.3.0
11.2.0
11.1.0
11.0.0
10.1.0
10.0.1
10.0.0
9.1.0
9.0.0
8.9.0
8.8.0
8.7.0
8.6.1
8.6.0
8.5.2
8.5.1
8.5.0
8.4.0
8.3.2
8.3.1
8.3.0
8.2.0
8.1.1
8.1.0
8.0.2
8.0.1
8.0.0
7.0.0
6.0.0
5.0.0
4.0.0
3.0.2
3.0.1
3.0.0
2.5.2
2.5.1
2.5.0
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.2
2.3.1
2.3.0
2.2.2
2.2.1
2.2.0
2.2.0-20170529.0
2.2.0-20170525.1
2.2.0-20170525.0
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
2.0.0-beta
2.0.0-20170503
1.5.0
1.5.0-20172804
1.4.1
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
1.2.0
Stratio egeo library of components in Angular 2
github.com/Stratio/egeo
Stratio/egeo
@stratio/egeo
/
typings
/
st-table
/
shared
/
order.d.ts
10 lines
(9 loc)
•
188 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
enum
ORDER_TYPE
{
ASC
=
0
,
DESC
=
1
, }
export
declare
class
Order
{
orderBy
:
string
;
type
:
ORDER_TYPE
;
constructor
(
orderBy
:
string
,
type
: ORDER_TYPE
); }