14 lines
264 B
TypeScript
14 lines
264 B
TypeScript
import {NotificationActionType} from 'constants/notificationActionType'
|
|
|
|
/**
|
|
* Notification action interface
|
|
*
|
|
* @export
|
|
* @interface INotificationAction
|
|
*/
|
|
export interface INotificationAction {
|
|
payload: any,
|
|
type: NotificationActionType
|
|
|
|
}
|
|
|