From bc8e29fcd034903a9fc80d73942915fea2b48f70 Mon Sep 17 00:00:00 2001 From: Roman Quiring Date: Thu, 6 Aug 2015 17:57:07 +0200 Subject: [PATCH] fixed definition of Vex.Flow.Glyph - fixed argument of setOptions() --- vexflow/vexflow.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vexflow/vexflow.d.ts b/vexflow/vexflow.d.ts index c17c4f710..070728212 100644 --- a/vexflow/vexflow.d.ts +++ b/vexflow/vexflow.d.ts @@ -452,7 +452,7 @@ declare module Vex { class Glyph { constructor(code : string, point : number, options? : {cache? : boolean, font? : IFont}); - setOptions(options? : {cache? : boolean, font? : IFont}) : void; + setOptions(options : {cache? : boolean, font? : IFont}) : void; setStave(stave : Stave) : Glyph; setXShift(x_shift : number) : Glyph; setYShift(y_shift : number) : Glyph;