From: Evan You Date: Fri, 10 Nov 2023 07:33:21 +0000 (+0800) Subject: fix(types): widen ClassValue type X-Git-Tag: v3.3.9~27 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=242401305944422d0c361b16101a4d18908927af;p=thirdparty%2Fvuejs%2Fcore.git fix(types): widen ClassValue type --- diff --git a/packages/runtime-dom/src/jsx.ts b/packages/runtime-dom/src/jsx.ts index 580fa9300f..08d9e2bec9 100644 --- a/packages/runtime-dom/src/jsx.ts +++ b/packages/runtime-dom/src/jsx.ts @@ -255,7 +255,7 @@ export type StyleValue = export type ClassValue = | undefined | string - | Record + | Record | Array export interface HTMLAttributes extends AriaAttributes, EventHandlers {