Migrate actions,reducers and action types to TS #15
This commit is contained in:
13
app/reducers/posts/IPostAction.ts
Normal file
13
app/reducers/posts/IPostAction.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { PostActionType } from "constants/postActionType";
|
||||
|
||||
/**
|
||||
* Post action interface
|
||||
*
|
||||
* @export
|
||||
* @interface IPostAction
|
||||
*/
|
||||
export interface IPostAction {
|
||||
payload: any,
|
||||
type: PostActionType
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user