UNPKG

246 BTypeScriptView Raw
1/**
2 * The four basic intents.
3 */
4export declare const Intent: {
5 NONE: "none";
6 PRIMARY: "primary";
7 SUCCESS: "success";
8 WARNING: "warning";
9 DANGER: "danger";
10};
11export declare type Intent = typeof Intent[keyof typeof Intent];