From dbadd9b96d1fad4dd9960fb4cceb85c9464e0c4e Mon Sep 17 00:00:00 2001 From: Matt Gibbs Date: Fri, 25 Sep 2015 18:02:47 -0400 Subject: [PATCH] Fixed accidental missing optional markers Also added the noop function to the Static Chartist --- chartist/chartist.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chartist/chartist.d.ts b/chartist/chartist.d.ts index d55f876802..a4419eb4d2 100644 --- a/chartist/chartist.d.ts +++ b/chartist/chartist.d.ts @@ -10,6 +10,7 @@ declare module Chartist { Line: IChartistLineChart; Svg: any; + noop: Function; } interface IResponsiveOptionTuple extends Array { @@ -185,8 +186,8 @@ declare module Chartist { showLabel?: boolean; showGrid?: boolean; labelInterpolationFnc?: Function; - scaleMinSpace: number; - onlyInteger: boolean; + scaleMinSpace?: number; + onlyInteger?: boolean; } interface IBarChartClasses { @@ -241,7 +242,6 @@ declare module Chartist { interface ILineChartYAxis extends ILineChartAxis { scaleMinSpace?: number; onlyInteger?: boolean; - } // TODO: Finish documenting all of the defaults