UNPKG

trellis

Version:

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

13 lines 592 B
/** * Gallery entry — kanban (dynamic board projection: group-field universe, * card bucketing, column ops, move-card writes, composed undo-history). */ import { createKanbanCore } from '../../kanban/index.js'; import { createUndoHistoryCore } from '../../undo-history/index.js'; import type { RegisteredComponent } from '../../inspector/index.js'; type KanbanConfig = { undoHistory?: ReturnType<typeof createUndoHistoryCore>; }; export declare const kanbanEntry: RegisteredComponent<KanbanConfig, ReturnType<typeof createKanbanCore>>; export {}; //# sourceMappingURL=kanban.d.ts.map