您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.any.ts 310B

123456789101112131415161718
  1. /**
  2. * The types of the buttons.
  3. */
  4. export enum BUTTON_TYPES {
  5. DESTRUCTIVE = 'destructive',
  6. PRIMARY = 'primary',
  7. SECONDARY = 'secondary',
  8. TERTIARY = 'tertiary'
  9. }
  10. /**
  11. * The modes of the buttons.
  12. */
  13. export const BUTTON_MODES: {
  14. CONTAINED: 'contained';
  15. } = {
  16. CONTAINED: 'contained'
  17. };