From 516d4648305cd1ee5050f40a2a544d5bebadcd03 Mon Sep 17 00:00:00 2001 From: Amour1688 Date: Tue, 17 Aug 2021 04:52:34 +0800 Subject: [PATCH] types(runtime-dom): export type `StyleValue` (#3718) --- 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 c3d00960d..ec45671b1 100644 --- a/packages/runtime-dom/types/jsx.d.ts +++ b/packages/runtime-dom/types/jsx.d.ts @@ -232,7 +232,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