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/global/IGlobalAction.ts

13 lines
227 B
TypeScript

import { GlobalActionType } from 'constants/globalActionType';
/**
* Global action interface
*
* @export
* @interface IGlobalAction
*/
export interface IGlobalAction {
payload: any,
type: GlobalActionType
}