π File detail
ink/layout/engine.ts
π§© .tsπ 7 linesπΎ 177 bytesπ text
β Back to All Filesπ― Use case
This file lives under βink/β, which covers Ink terminal UI (layouts, TTY IO, keyboard, renderer components). On the API surface it exposes createLayoutNode β mainly functions, hooks, or classes. It composes internal code from node and yoga (relative imports).
Generated from folder role, exports, dependency roots, and inline comments β not hand-reviewed for every path.
π§ Inline summary
import type { LayoutNode } from './node.js' import { createYogaLayoutNode } from './yoga.js' export function createLayoutNode(): LayoutNode { return createYogaLayoutNode()
π€ Exports (heuristic)
createLayoutNode
π₯οΈ Source preview
import type { LayoutNode } from './node.js'
import { createYogaLayoutNode } from './yoga.js'
export function createLayoutNode(): LayoutNode {
return createYogaLayoutNode()
}