13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
import { GlobalActionType } from 'constants/globalActionType';
|
|
|
|
/**
|
|
* Global action interface
|
|
*
|
|
* @export
|
|
* @interface IGlobalAction
|
|
*/
|
|
export interface IGlobalAction {
|
|
payload: any,
|
|
type: GlobalActionType
|
|
|
|
} |