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/comments/ICommentAction.ts

14 lines
233 B
TypeScript

import {CommentActionType} from 'constants/commentActionType'
/**
* Comment action interface
*
* @export
* @interface ICommentAction
*/
export interface ICommentAction {
payload: any;
type: CommentActionType;
}