/** * Layout engine — Yoga adapter with pure TypeScript implementation. * * Phase 1 migration target (no React dependency). * Includes vendored yoga-native/ (~86KB pure TS, no WASM/native addon). */ export { createLayoutNode } from './engine.js'; export type { Edges, Point, Rectangle, Size, } from './geometry.js'; export { addEdges, clamp, clampRect, edges, resolveEdges, unionRect, withinBounds, ZERO_EDGES, } from './geometry.js'; export type { LayoutMeasureFunc, LayoutNode, } from './node.js'; export { LayoutAlign, LayoutDisplay, LayoutEdge, LayoutFlexDirection, LayoutGutter, LayoutJustify, LayoutMeasureMode, LayoutOverflow, LayoutPositionType, LayoutWrap, } from './node.js'; export { createYogaLayoutNode, YogaLayoutNode } from './yoga.js'; //# sourceMappingURL=index.d.ts.map