Merge pull request #6998 from b0r3as/master

Fix module export in state-machine typing
This commit is contained in:
Masahiro Wakame
2015-12-10 21:15:31 +09:00
+1 -1
View File
@@ -79,5 +79,5 @@ interface StateMachine {
declare var StateMachine: StateMachineStatic;
declare module "state-machine" {
export = StateMachineStatic;
export = StateMachine;
}