changed definition of Vex.Flow.Renderer

- changed type of enums to const
This commit is contained in:
Roman Quiring
2015-08-06 16:18:30 +02:00
parent 09154f4618
commit a4a2aaf62a
+2 -2
View File
@@ -721,8 +721,8 @@ declare module Vex {
}
export module Renderer {
enum Backends {CANVAS, RAPHAEL, SVG, VML}
enum LineEndType {NONE, UP, DOWN}
const enum Backends {CANVAS, RAPHAEL, SVG, VML}
const enum LineEndType {NONE, UP, DOWN}
}
class Renderer {