From 3cb092884b27264e900c4d0e94c3d8e74cfc548d Mon Sep 17 00:00:00 2001 From: wanwan31 Date: Thu, 3 Sep 2015 10:27:46 +0200 Subject: [PATCH] fix comma Im getting this error with gulp: highcharts-ng/higcharts-ng-d.ts(27,6) : error TS1005: ';' expected. --- highcharts-ng/highcharts-ng.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/highcharts-ng/highcharts-ng.d.ts b/highcharts-ng/highcharts-ng.d.ts index d0a340559..ea7caa883 100644 --- a/highcharts-ng/highcharts-ng.d.ts +++ b/highcharts-ng/highcharts-ng.d.ts @@ -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; -} \ No newline at end of file +}