From 528774a8a654f26fcfd0885802fceba5ffc11e68 Mon Sep 17 00:00:00 2001 From: Kubicek Daniel Date: Fri, 10 Nov 2017 14:42:25 +0100 Subject: [PATCH] [chart.js] Add 'pie' to ChartType --- types/chart.js/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/chart.js/index.d.ts b/types/chart.js/index.d.ts index ef9e8b0675..c2ae788396 100644 --- a/types/chart.js/index.d.ts +++ b/types/chart.js/index.d.ts @@ -78,7 +78,7 @@ interface Size { } declare namespace Chart { - type ChartType = 'line' | 'bar' | 'radar' | 'doughnut' | 'polarArea' | 'bubble'; + type ChartType = 'line' | 'bar' | 'radar' | 'doughnut' | 'polarArea' | 'bubble' | 'pie'; type TimeUnit = 'millisecond' | 'second' | 'minute' | 'hour' | 'day' | 'week' | 'month' | 'quarter' | 'year';