This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/app/reducers/authorize/IAuthorizeAction.ts
2017-10-10 16:39:02 +07:00

15 lines
268 B
TypeScript

// - Import action types
import {AuthorizeActionType} from 'constants/authorizeActionType'
/**
* Authorize action interface
*
* @export
* @interface IAuthorizeAction
*/
export interface IAuthorizeAction {
payload: any
type: AuthorizeActionType
}