fix(typescript): add css camelCase props

This commit is contained in:
LuLaValva 2023-10-16 11:25:27 -07:00 committed by Dylan Piercey
parent 358fb2d22e
commit 926ed31bec

View File

@ -125,7 +125,9 @@ declare global {
}
namespace CSS {
export interface Properties extends csstype.PropertiesHyphen {}
export interface Properties
extends csstype.PropertiesHyphen,
csstype.Properties {}
}
namespace HTML {