Full SDK workspace: core, contracts, sdk, cli, browser-host, browser-kit, federation, omega-core, oracle, self-healing, strategies, tools, emacs. Clean extraction from the development monorepo. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
468 B
TypeScript
11 lines
468 B
TypeScript
// src/flow/viewers/index.ts
|
|
//
|
|
// Result viewer components for ResultsPanel.
|
|
// Each viewer displays a specific type of result data.
|
|
|
|
export { DataViewer, DataViewerShell } from './DataViewer';
|
|
export { ErrorViewer, ErrorViewerShell } from './ErrorViewer';
|
|
export { CommandResultViewer, CommandResultViewerShell } from './CommandResultViewer';
|
|
export { TreeViewer, TreeViewerShell } from './TreeViewer';
|
|
export { TableViewer, TableViewerShell } from './TableViewer';
|