type.enum.d.ts 312 B

1234567891011
  1. /**
  2. * Used for some components to determine colouring of various elements. Relates to CSS classes to facilitate dev's life
  3. */
  4. export declare enum TypeEnum {
  5. PRIMARY = "primary",
  6. SECONDARY = "secondary",
  7. TERTIARY = "tertiary",
  8. SUCCESS = "success",
  9. WARNING = "warning",
  10. ERROR = "error"
  11. }