From 3af1c9764baf322b25d0b1764aaa42497d968863 Mon Sep 17 00:00:00 2001 From: Amour1688 Date: Mon, 3 May 2021 11:52:55 +0800 Subject: [PATCH] feat(runtime-dom): should export type `StyleValue` --- packages/runtime-dom/types/jsx.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-dom/types/jsx.d.ts b/packages/runtime-dom/types/jsx.d.ts index cd4133a9af1..13577727002 100644 --- a/packages/runtime-dom/types/jsx.d.ts +++ b/packages/runtime-dom/types/jsx.d.ts @@ -247,7 +247,7 @@ interface AriaAttributes { } // Vue's style normalization supports nested arrays -type StyleValue = string | CSSProperties | Array +export type StyleValue = string | CSSProperties | Array export interface HTMLAttributes extends AriaAttributes, EventHandlers { innerHTML?: string