From a58d43cbda430a46610c60c88deafbc33c946ea6 Mon Sep 17 00:00:00 2001 From: LeeLenaleee <39033624+LeeLenaleee@users.noreply.github.com> Date: Thu, 14 Jan 2021 13:45:12 +0100 Subject: [PATCH] fixes #8304 (Missing type) beta 8 broken typescript (#8305) * fixes #8304 * Update layout.d.ts First letter of variable from capital to normal --- types/layout.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/layout.d.ts b/types/layout.d.ts index bb3f1dbba..ef8935db7 100644 --- a/types/layout.d.ts +++ b/types/layout.d.ts @@ -47,7 +47,7 @@ export interface LayoutItem { /** * Draws the element */ - draw(ChartArea): void; + draw(chartArea: ChartArea): void; /** * Returns an object with padding on the edges */ -- 2.47.2