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

This commit is contained in:
Amour1688
2021-08-17 04:52:34 +08:00
committed by GitHub
parent 84d4357f6f
commit 516d464830

View File

@@ -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