Migrate actions,reducers and action types to TS #15
This commit is contained in:
13
app/reducers/users/IUserAction.ts
Normal file
13
app/reducers/users/IUserAction.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import {UserActionType} from 'constants/userActionType'
|
||||
|
||||
/**
|
||||
* User action interface
|
||||
*
|
||||
* @export
|
||||
* @interface IUserAction
|
||||
*/
|
||||
export interface IUserAction {
|
||||
payload: any,
|
||||
type: UserActionType
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user