agent-ecosystem/src/features/tmux-installer/main/index.ts
2026-05-18 01:57:16 +03:00

21 lines
885 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,
listRuntimeProcessTableForCurrentPlatform,
listTmuxPanePidsForCurrentPlatform,
listTmuxPaneRuntimeInfoForCurrentPlatform,
sendKeysToTmuxPaneForCurrentPlatform,
} from './composition/runtimeSupport';
export type {
RuntimeProcessTableRow,
TmuxPaneRuntimeInfo,
} from './infrastructure/runtime/TmuxPlatformCommandExecutor';
export { parseRuntimeProcessTable } from './infrastructure/runtime/TmuxPlatformCommandExecutor';