UNPKG

trellis

Version:

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

13 lines 556 B
/** * Gallery entry — table (headless data grid: sort, filter, paging, * selection, inline edit, composed undo-history). */ import { createTableCore } from '../../table/index.js'; import { createUndoHistoryCore } from '../../undo-history/index.js'; import type { RegisteredComponent } from '../../inspector/index.js'; type TableConfig = { undoHistory?: ReturnType<typeof createUndoHistoryCore>; }; export declare const tableEntry: RegisteredComponent<TableConfig, ReturnType<typeof createTableCore>>; export {}; //# sourceMappingURL=table.d.ts.map