From 926ed31bec3d53b6cabc8d3b4111bb6ade712268 Mon Sep 17 00:00:00 2001 From: LuLaValva Date: Mon, 16 Oct 2023 11:25:27 -0700 Subject: [PATCH] fix(typescript): add css camelCase props --- packages/marko/tags-html.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/marko/tags-html.d.ts b/packages/marko/tags-html.d.ts index 4d5c442c5..ea2fe2f2c 100644 --- a/packages/marko/tags-html.d.ts +++ b/packages/marko/tags-html.d.ts @@ -125,7 +125,9 @@ declare global { } namespace CSS { - export interface Properties extends csstype.PropertiesHyphen {} + export interface Properties + extends csstype.PropertiesHyphen, + csstype.Properties {} } namespace HTML {