Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions types/index.esm.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2819,7 +2819,7 @@ export interface GridLineOptions {
/**
* @default 'rgba(0, 0, 0, 0.1)'
*/
color: Scriptable<Color, ScriptableScaleContext> | readonly Color[];
color: ScriptableAndArray<Color, ScriptableScaleContext>;
/**
* @default []
*/
Expand All @@ -2831,7 +2831,7 @@ export interface GridLineOptions {
/**
* @default 1
*/
lineWidth: Scriptable<number, ScriptableScaleContext> | readonly number[];
lineWidth: ScriptableAndArray<number, ScriptableScaleContext>;

/**
* @default true
Expand All @@ -2856,7 +2856,7 @@ export interface GridLineOptions {
/**
* @default 'rgba(0, 0, 0, 0.1)'
*/
tickColor: Scriptable<Color, ScriptableScaleContext> | readonly Color[];
tickColor: ScriptableAndArray<Color, ScriptableScaleContext>;
/**
* @default 10
*/
Expand Down