We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 294320d commit 3055c6bCopy full SHA for 3055c6b
packages/static/assets/types/jsx.d.ts
@@ -2,7 +2,8 @@ import type { OpaqueRef, Cell, Props, RenderNode, VNode, Stream } from "commonto
2
3
// Helper type that allows any combination of OpaqueRef, Cell, and Stream wrappers
4
// Supports arbitrary nesting like OpaqueRef<OpaqueRef<Cell<T>>>
5
-type CellLike<T> = OpaqueRef<T> | Cell<T> | Stream<T>;
+type InnerCellLike<T> = OpaqueRef<T> | Cell<T> | Stream<T>;
6
+type CellLike<T> = InnerCellLike<T> | InnerCellLike<InnerCellLike<T>>;
7
8
// Minimal theme typing for ct-theme
9
type CTColorToken = string | {
0 commit comments