Merge pull request #1558 from balassy/patch-1

Support multiple 'from' states
This commit is contained in:
Masahiro Wakame
2014-01-21 07:16:25 -08:00

View File

@@ -11,7 +11,7 @@ interface StateMachineErrorCallback {
interface StateMachineEventDef {
name: string;
from: string;
from: any; // string or string[]
to: string;
}
@@ -78,4 +78,4 @@ interface StateMachine {
transition: StateMachineTransition;
}
declare var StateMachine: StateMachineStatic;
declare var StateMachine: StateMachineStatic;