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
/
intents.ts
10 lines
(8 loc)
•
256 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
const
Intent
= {
NONE
:
'none'
as
'none'
,
PRIMARY
:
'primary'
as
'primary'
,
NEGATIVE
:
'negative'
as
'negative'
,
POSITIVE
:
'positive'
as
'positive'
,
WARNING
:
'warning'
as
'warning'
};
export
type
Intent
=
typeof
Intent
[keyof
typeof
Intent
];