UNPKG

scheunemann-interfaces

Version:
10 lines (9 loc) 365 B
import { NotificationActionTypeEnum } from '../enums'; import { INotificationAction } from '../interfaces/i-notification-action'; export declare class NotificationActionEntity implements INotificationAction { icon?: string; label: string; type: NotificationActionTypeEnum; value: string; constructor(data?: Partial<NotificationActionEntity>); }