14 lines
231 B
TypeScript
14 lines
231 B
TypeScript
|
|
import {CommentActionType} from 'constants/commentActionType'
|
|
|
|
/**
|
|
* Comment action interface
|
|
*
|
|
* @export
|
|
* @interface ICommentAction
|
|
*/
|
|
export interface ICommentAction {
|
|
payload: any
|
|
type: CommentActionType
|
|
|
|
} |