Support AMD

Added an export module, because the original state-machine.js supports AMD, which feature was not available from TypeScript before this patch.
This commit is contained in:
György Balássy
2014-03-02 10:45:33 +01:00
parent 0854df3b0f
commit 7078d20cc2

View File

@@ -79,3 +79,7 @@ interface StateMachine {
}
declare var StateMachine: StateMachineStatic;
declare module "state-machine" {
export = StateMachineStatic;
}