fix comma

Im getting this error with gulp: highcharts-ng/higcharts-ng-d.ts(27,6) : error TS1005: ';' expected.
This commit is contained in:
wanwan31
2015-09-03 10:27:46 +02:00
parent 9ce3cd4ded
commit 3cb092884b
+2 -2
View File
@@ -24,7 +24,7 @@ interface HighChartsNGConfig {
currentMin?: number;
currentMax?: number;
title?: { text?: string }
},
};
//Whether to use HighStocks instead of HighCharts (optional). Defaults to false.
useHighStocks?: boolean;
//size (optional) if left out the chart will default to size of the div or something sensible.
@@ -40,4 +40,4 @@ interface HighChartsNGConfig {
interface HighChartsNGChart extends HighChartsNGConfig {
//This is a simple way to access all the Highcharts API that is not currently managed by this directive.
getHighcharts(): HighchartsChartObject;
}
}