You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
564 B
TypeScript
29 lines
564 B
TypeScript
// Copyright (C) 2020 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { AnyAction } from 'redux';
|
|
|
|
export enum NotificationsActionType {
|
|
RESET_ERRORS = 'RESET_ERRORS',
|
|
RESET_MESSAGES = 'RESET_MESSAGES',
|
|
}
|
|
|
|
export function resetErrors(): AnyAction {
|
|
const action = {
|
|
type: NotificationsActionType.RESET_ERRORS,
|
|
payload: {},
|
|
};
|
|
|
|
return action;
|
|
}
|
|
|
|
export function resetMessages(): AnyAction {
|
|
const action = {
|
|
type: NotificationsActionType.RESET_MESSAGES,
|
|
payload: {},
|
|
};
|
|
|
|
return action;
|
|
}
|