Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- export interface Actions {
- [ActionTypes.GET_POSTS](
- { commit }: AugmentedActionContext,
- payload: any
- ): Promise<any>;
- [ActionTypes.DELETE_POST](
- { commit }: AugmentedActionContext,
- payload: any
- ): Promise<any>;
- [ActionTypes.LOGIN](
- { commit }: AugmentedActionContext,
- payload: any
- ): Promise<any>;
- [ActionTypes.GET_USER_DATA](
- { commit }: AugmentedActionContext
- ): Promise<void>;
- }
Advertisement
Add Comment
Please, Sign In to add comment