Define Fiber<I> and Effect<I> types in src/host/fiber.ts

This commit is contained in:
2026-05-18 16:43:21 +00:00
parent 614ee05364
commit d472b9f107
3 changed files with 211 additions and 0 deletions

View File

@@ -19,5 +19,7 @@ export { ValuePointer, selectNode, setNode } from "./core/pointer.js";
export { createRoot as createHostRoot } from "./host/config.js";
export type { HostConfig, Root } from "./host/config.js";
export type { Fiber, Effect } from "./host/fiber.js";
export { TransformRegistry, childCtx, matchesSchema, ctx as transformCtx } from "./transform/registry.js";
export type { TransformContext, TransformFn, TransformRule } from "./transform/registry.js";