13 lines
214 B
TypeScript
13 lines
214 B
TypeScript
import { PostActionType } from 'constants/postActionType'
|
|
|
|
/**
|
|
* Post action interface
|
|
*
|
|
* @export
|
|
* @interface IPostAction
|
|
*/
|
|
export interface IPostAction {
|
|
payload: any,
|
|
type: PostActionType
|
|
|
|
} |