From 0a7d1f04b029ce02c01b1fcc6f21f4f0e922b41a Mon Sep 17 00:00:00 2001 From: ryiwamoto Date: Mon, 2 Feb 2015 21:35:51 +0900 Subject: [PATCH] update jquery.flot.d.ts --- flot/jquery.flot.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flot/jquery.flot.d.ts b/flot/jquery.flot.d.ts index 62054809b..9ea862c5c 100644 --- a/flot/jquery.flot.d.ts +++ b/flot/jquery.flot.d.ts @@ -193,6 +193,7 @@ declare module jquery.flot { } interface axis extends axisOptions { + options: axisOptions; p2c(point: point):canvasPoint; c2p(canvasPoint: canvasPoint):point; } @@ -213,6 +214,8 @@ declare module jquery.flot { shutdown(): void; getData(): dataSeries[]; getAxes(): axes; + getXAxes(): axis[]; + getYAxes(): axis[]; getPlaceholder(): JQuery; getCanvas(): HTMLCanvasElement; getPlotOffset(): canvasPoint;