1234567891011 |
- /**
- * Used for some components to determine colouring of various elements. Relates to CSS classes to facilitate dev's life
- */
- export declare enum TypeEnum {
- PRIMARY = "primary",
- SECONDARY = "secondary",
- TERTIARY = "tertiary",
- SUCCESS = "success",
- WARNING = "warning",
- ERROR = "error"
- }
|