changed Vex.Flow.Annotation

- changed enums to const
This commit is contained in:
Roman Quiring
2015-08-06 18:13:33 +02:00
parent 727502c429
commit f5ec5ac8f0
+2 -2
View File
@@ -152,8 +152,8 @@ declare module Vex {
}
export module Annotation {
enum Justify {LEFT, CENTER, RIGHT, CENTER_STEM}
enum VerticalJustify {TOP, CENTER, BOTTOM, CENTER_STEM}
const enum Justify {LEFT, CENTER, RIGHT, CENTER_STEM}
const enum VerticalJustify {TOP, CENTER, BOTTOM, CENTER_STEM}
}
class Annotation extends Modifier {