Documentation / @agentick/core / SerializedFiberNode
Interface: SerializedFiberNode
Defined in: core/src/app/types.ts:1245
Serialized fiber node for snapshots and devtools.
Captures the component tree structure with props. Matches the FiberNode interface expected by devtools UI.
Properties
_summary?
optional_summary:string
Defined in: core/src/app/types.ts:1259
Human-readable summary for display
children
children:
SerializedFiberNode[]
Defined in: core/src/app/types.ts:1257
Child fibers
hooks
hooks:
SerializedHook[]
Defined in: core/src/app/types.ts:1255
Hook states (React manages hooks internally)
id
id:
string
Defined in: core/src/app/types.ts:1247
Unique identifier for the node
key
key:
string|number|null
Defined in: core/src/app/types.ts:1251
React key
props
props:
Record<string,unknown>
Defined in: core/src/app/types.ts:1253
JSON-safe props (functions/symbols removed)
type
type:
string
Defined in: core/src/app/types.ts:1249
Component name or element type