agent-ecosystem/src/features/tmux-installer/main/index.ts
2026-04-24 20:52:26 +03:00

20 lines
846 B
TypeScript

export {
registerTmuxInstallerIpc,
removeTmuxInstallerIpc,
} from './adapters/input/ipc/registerTmuxInstallerIpc';
export type { TmuxInstallerFeatureFacade } from './composition/createTmuxInstallerFeature';
export { createTmuxInstallerFeature } from './composition/createTmuxInstallerFeature';
export {
invalidateTmuxRuntimeStatusCache,
isTmuxRuntimeReadyForCurrentPlatform,
killTmuxPaneForCurrentPlatform,
killTmuxPaneForCurrentPlatformSync,
listRuntimeProcessesForCurrentTmuxPlatform,
listTmuxPanePidsForCurrentPlatform,
listTmuxPaneRuntimeInfoForCurrentPlatform,
} from './composition/runtimeSupport';
export type {
RuntimeProcessTableRow,
TmuxPaneRuntimeInfo,
} from './infrastructure/runtime/TmuxPlatformCommandExecutor';
export { parseRuntimeProcessTable } from './infrastructure/runtime/TmuxPlatformCommandExecutor';