14 lines
206 B
TypeScript
14 lines
206 B
TypeScript
import { UserActionType } from 'constants/userActionType'
|
|
|
|
/**
|
|
* User action interface
|
|
*
|
|
* @export
|
|
* @interface IUserAction
|
|
*/
|
|
export interface IUserAction {
|
|
payload: any,
|
|
type: UserActionType
|
|
|
|
}
|