From aebbb5afff8c330f53568d269e8d3518903fa828 Mon Sep 17 00:00:00 2001 From: Andy <68723584+LovelyAndy@users.noreply.github.com> Date: Sat, 5 Feb 2022 11:51:01 -0600 Subject: [PATCH] fix: allow colors as array (#10075) * fix: allow colors as array * Revert "fix: allow colors as array" This reverts commit 632e2ee917ad58061b4ec39dda5f43f593b0b3c1. * fix: allow colors as array * Update types/index.esm.d.ts Co-authored-by: Jacco van den Berg <39033624+LeeLenaleee@users.noreply.github.com> Co-authored-by: Jacco van den Berg <39033624+LeeLenaleee@users.noreply.github.com> --- types/index.esm.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.esm.d.ts b/types/index.esm.d.ts index c8993984e..10ac49f4e 100644 --- a/types/index.esm.d.ts +++ b/types/index.esm.d.ts @@ -2902,7 +2902,7 @@ export interface TickOptions { * Color of tick * @see Defaults.color */ - color: Scriptable; + color: ScriptableAndArray; /** * see Fonts */ -- 2.47.3