fix(core): initial

This commit is contained in:
2019-02-21 21:48:39 +01:00
commit 1663e31a2e
16 changed files with 2032 additions and 0 deletions

View File

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