UNPKG
blueprintjs-core
Version:
latest (3.46.0)
3.46.0
Core styles & components
github.com/palantir/blueprint
palantir/blueprint
blueprintjs-core
/
lib
/
esm
/
common
/
intent.d.ts
12 lines
(11 loc)
•
246 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * The four basic intents. */
export
declare
const
Intent
: {
NONE
:
"none"
;
PRIMARY
:
"primary"
;
SUCCESS
:
"success"
;
WARNING
:
"warning"
;
DANGER
:
"danger"
; };
export
declare
type
Intent
=
typeof
Intent
[keyof
typeof
Intent
];