Make sure vexflow can be loaded with jspm

This commit is contained in:
Kohei Hisakuni
2016-02-13 12:53:18 -08:00
parent bcd5761826
commit 0c8b821916
+5 -1
View File
@@ -6,7 +6,7 @@
//inconsistent namespace: this is a helper funtion from tables.js and should not pollute the global namespace!
declare function sanitizeDuration(duration : string) : string;
declare namespace Vex {
declare module Vex {
function L(block : string, args : any[]) : void;
function Merge<T extends Object>(destination : T, source : Object) : T;
@@ -1411,3 +1411,7 @@ declare namespace Vex {
}
}
}
declare module "vexflow" {
export = Vex;
}