This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/app/reducers/notifications/INotificationAction.ts

14 lines
264 B
TypeScript

import {NotificationActionType} from 'constants/notificationActionType'
/**
* Notification action interface
*
* @export
* @interface INotificationAction
*/
export interface INotificationAction {
payload: any,
type: NotificationActionType
}