Documentation / @agentick/core / SerializedFiberNode
Interface: SerializedFiberNode ​
Defined in: core/src/app/types.ts:1237
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:1251
Human-readable summary for display
children ​
children:
SerializedFiberNode[]
Defined in: core/src/app/types.ts:1249
Child fibers
hooks ​
hooks:
SerializedHook[]
Defined in: core/src/app/types.ts:1247
Hook states (React manages hooks internally)
id ​
id:
string
Defined in: core/src/app/types.ts:1239
Unique identifier for the node
key ​
key:
string|number|null
Defined in: core/src/app/types.ts:1243
React key
props ​
props:
Record<string,unknown>
Defined in: core/src/app/types.ts:1245
JSON-safe props (functions/symbols removed)
type ​
type:
string
Defined in: core/src/app/types.ts:1241
Component name or element type