notificationItemButton.d.ts 628 B

12345678910111213141516171819
  1. import { ButtonTypeEnum } from '../../entities/messages';
  2. export interface INotificationButtonConfig {
  3. key: ButtonTypeEnum;
  4. displayName: string;
  5. }
  6. export interface IButtonStyles {
  7. backGroundColor: string;
  8. fontColor: string;
  9. removeCircleColor: string;
  10. }
  11. export interface IStyleButtons {
  12. primary: IButtonStyles;
  13. secondary: IButtonStyles;
  14. clicked: IButtonStyles;
  15. }
  16. export declare const darkButtonStyle: IStyleButtons;
  17. export declare const lightButtonStyle: IStyleButtons;
  18. export declare const notificationItemButtons: INotificationButtonConfig[];
  19. //# sourceMappingURL=notificationItemButton.d.ts.map