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/votes/IVoteAction.ts

14 lines
214 B
TypeScript

import {VoteActionType} from 'constants/voteActionType'
/**
* Vote action interface
*
* @export
* @interface IVoteAction
*/
export interface IVoteAction {
payload: any,
type: VoteActionType
}