Просмотр исходного кода

types(runtime-dom): export type `StyleValue` (#3718)

Amour1688 4 лет назад
Родитель
Сommit
516d464830
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/runtime-dom/types/jsx.d.ts

+ 1 - 1
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<StyleValue>
+export type StyleValue = string | CSSProperties | Array<StyleValue>
 
 export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
   innerHTML?: string