From dcef9183ea4304eb23bbc924ba64665cecd19fc3 Mon Sep 17 00:00:00 2001 From: Roman Quiring Date: Thu, 6 Aug 2015 17:47:21 +0200 Subject: [PATCH] changed definition of Vex.Flow.Tuplet - changed LOCATION_TOP and LOCATION_BOTTOM from static to const --- vexflow/vexflow.d.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/vexflow/vexflow.d.ts b/vexflow/vexflow.d.ts index 7640d4a90..bb920c758 100644 --- a/vexflow/vexflow.d.ts +++ b/vexflow/vexflow.d.ts @@ -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;