소스 검색

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

Amour1688 4 년 전
부모
커밋
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