changed definition of Vex.Flow.Tuplet

- changed LOCATION_TOP and LOCATION_BOTTOM from static to const
This commit is contained in:
Roman Quiring
2015-08-06 17:47:21 +02:00
parent 6970bb6f78
commit dcef9183ea

View File

@@ -1288,10 +1288,13 @@ declare module Vex {
getNoteForFret(fretNum : string, stringNum : string) : string;
}
module Tuplet {
const LOCATION_TOP : number;
const LOCATION_BOTTOM : number;
}
class Tuplet {
constructor(notes : StaveNote[], options : {num_notes? : number, beats_occupied? : number});
static LOCATION_TOP : number;
static LOCATION_BOTTOM : number;
attach() : void;
detach() : void;
setContext(context : IRenderContext) : Tuplet;