import {IAction} from '@dezrez/core'; export const ActionTypes = { INCREMENT : 'INCREMENT' }; export class CounterActions { public static increment(): IAction { return { payload: {name: 'test'}, type: ActionTypes.INCREMENT }; } }