From 7af9261e86af3a2c0cf774b60a4acf89bdb70716 Mon Sep 17 00:00:00 2001 From: Alessio Fanelli Date: Sat, 24 Jun 2017 13:01:20 +0200 Subject: [PATCH] Use 4 spaces --- types/chartjs/index.d.ts | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/types/chartjs/index.d.ts b/types/chartjs/index.d.ts index 88c0a507fe..a9075e02a2 100644 --- a/types/chartjs/index.d.ts +++ b/types/chartjs/index.d.ts @@ -96,35 +96,35 @@ interface ChartOptions extends ChartSettings { } interface ChartTooltips { - mode?: string; - intersect?: boolean; + mode?: string; + intersect?: boolean; } interface ChartLegend { - display?: boolean; - position?: string; + display?: boolean; + position?: string; } interface ChartScales { - xAxes?: Array; - yAxes?: Array; + xAxes?: Array; + yAxes?: Array; } interface ChartScalesOptions { - stacked?: boolean; - position?: string; - id?: string; - ticks?: ScaleTicksOptions; + stacked?: boolean; + position?: string; + id?: string; + ticks?: ScaleTicksOptions; } interface ScaleTicksOptions { - min?: number; - max?: number; + min?: number; + max?: number; } interface ChartTitle { - display?: boolean; - text?: string; + display?: boolean; + text?: string; } interface PointsAtEvent {