UNPKG

trellis

Version:

Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications

8 lines 594 B
import type { BlobResolver } from './blob-resolver.js'; import { type FileState } from './diff.js'; import type { LaneMeta } from './lane.js'; import type { VcsOp } from './types.js'; /** Cumulative file map for a lane's materialized view at enter time. */ export declare function collectLaneFileStates(integrationOps: VcsOp[], laneOps: VcsOp[], meta: LaneMeta, parentLaneOps?: VcsOp[]): Map<string, FileState>; export declare function materializeToDisk(rootPath: string, fileStates: Map<string, FileState>, blobResolver: BlobResolver): void; //# sourceMappingURL=lane-disk-materialize.d.ts.map