From 813943ac72d11dc58bc21f3a93bfac16c3970ffd Mon Sep 17 00:00:00 2001 From: Brainshaker95 Date: Fri, 7 Oct 2022 06:36:57 +0200 Subject: [PATCH] Types: Change grid option of CartesianScaleOptions and RadialLinearScaleOptions to Partial of GridLineOptions (#10760) --- types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index 7154257ca..35420b1b7 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -3075,7 +3075,7 @@ export interface CartesianScaleOptions extends CoreScaleOptions { */ offset: boolean; - grid: GridLineOptions; + grid: Partial; border: BorderOptions; @@ -3359,7 +3359,7 @@ export type RadialLinearScaleOptions = CoreScaleOptions & { */ beginAtZero: boolean; - grid: GridLineOptions; + grid: Partial; /** * User defined minimum number for the scale, overrides minimum value from data. -- 2.47.2