UNPKG
jiro-ui
Version:
latest (0.0.2)
0.0.2
A Mithril.js UI library based from construct-ui
nenjotsu.github.io/jiro-ui
nenjotsu/jiro-ui
jiro-ui
/
src
/
_shared
/
align.ts
8 lines
(6 loc)
•
167 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
export
const
Align
= {
LEFT
:
'left'
as
'left'
,
CENTER
:
'center'
as
'center'
,
RIGHT
:
'right'
as
'right'
};
export
type
Align
=
typeof
Align
[keyof
typeof
Align
];