6 lines
169 B
TypeScript
6 lines
169 B
TypeScript
|
|
import { ReduxActionTypes } from "constants/ReduxActionConstants";
|
||
|
|
|
||
|
|
export const resetReleasesCount = () => ({
|
||
|
|
type: ReduxActionTypes.RESET_UNREAD_RELEASES_COUNT,
|
||
|
|
});
|