/ ink / layout / engine.ts
engine.ts
1  import type { LayoutNode } from './node.js'
2  import { createYogaLayoutNode } from './yoga.js'
3  
4  export function createLayoutNode(): LayoutNode {
5    return createYogaLayoutNode()
6  }