diff --git a/packages/static/assets/types/jsx.d.ts b/packages/static/assets/types/jsx.d.ts index db882781f..0b54e6551 100644 --- a/packages/static/assets/types/jsx.d.ts +++ b/packages/static/assets/types/jsx.d.ts @@ -2,7 +2,8 @@ import type { OpaqueRef, Cell, Props, RenderNode, VNode, Stream } from "commonto // Helper type that allows any combination of OpaqueRef, Cell, and Stream wrappers // Supports arbitrary nesting like OpaqueRef>> -type CellLike = OpaqueRef | Cell | Stream; +type InnerCellLike = OpaqueRef | Cell | Stream; +type CellLike = InnerCellLike | InnerCellLike>; // Minimal theme typing for ct-theme type CTColorToken = string | {