Guest User

Untitled

a guest
Feb 23rd, 2021
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export interface Actions {
  2.     [ActionTypes.GET_POSTS](
  3.         { commit }: AugmentedActionContext,
  4.         payload: any
  5.     ): Promise<any>;
  6.     [ActionTypes.DELETE_POST](
  7.         { commit }: AugmentedActionContext,
  8.         payload: any
  9.     ): Promise<any>;
  10.     [ActionTypes.LOGIN](
  11.         { commit }: AugmentedActionContext,
  12.         payload: any
  13.     ): Promise<any>;
  14.     [ActionTypes.GET_USER_DATA](
  15.         { commit }: AugmentedActionContext
  16.     ): Promise<void>;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment