Fixed accidental missing optional markers

Also added the noop function to the Static Chartist
This commit is contained in:
Matt Gibbs
2015-09-25 18:02:47 -04:00
parent 4046880565
commit dbadd9b96d

View File

@@ -10,6 +10,7 @@ declare module Chartist {
Line: IChartistLineChart;
Svg: any;
noop: Function;
}
interface IResponsiveOptionTuple<T extends IChartOptions> extends Array<string | T> {
@@ -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