Skip to content

Commit 2424013

Browse files
committed
fix(types): widen ClassValue type
1 parent 5156ac5 commit 2424013

File tree

1 file changed

+1
-1
lines changed
  • packages/runtime-dom/src

1 file changed

+1
-1
lines changed

packages/runtime-dom/src/jsx.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export type StyleValue =
255255
export type ClassValue =
256256
| undefined
257257
| string
258-
| Record<string | number, unknown>
258+
| Record<string | number, any>
259259
| Array<ClassValue>
260260

261261
export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {

0 commit comments

Comments
 (0)