smartstate/ts/smartstate.classes.stateaction.ts
2019-02-21 21:48:39 +01:00

9 lines
221 B
TypeScript

import * as plugins from './smartstate.plugins';
/**
* an actionmodifier for the state
*/
export class StateAction<StatePayload> {
constructor(public actionDef: (stateArg: StatePayload) => StatePayload) {}
}