changed definition of Vex.Flow.StaveLine

- changed enums to const
This commit is contained in:
Roman Quiring
2015-08-06 16:45:22 +02:00
parent b067174872
commit 0936292468
+2 -2
View File
@@ -838,8 +838,8 @@ declare module Vex {
}
export module StaveLine {
enum TextVerticalPosition {TOP, BOTTOM}
enum TextJustification {LEFT, CENTER, RIGHT}
const enum TextVerticalPosition {TOP, BOTTOM}
const enum TextJustification {LEFT, CENTER, RIGHT}
}
class StaveLine {