UNPKG

@lanonasis/cli

Version:

Professional CLI for LanOnasis Memory as a Service (MaaS) with MCP support, seamless inline editing, and enterprise-grade security

11 lines (10 loc) 670 B
/** * CLI UX Improvements - Core Interfaces * * This module exports all the TypeScript interfaces for the CLI UX improvements * as specified in the design document. These interfaces define the contracts * for the TextInputHandler, ConnectionManager, and OnboardingFlow components. */ export type { TextInputHandler, KeyEvent, CursorPosition, InputOptions, InputSession, } from './TextInputHandler.js'; export type { ConnectionManager, ConnectionResult, ConfigResult, ServerInstance, ConnectionStatus, MCPConfig, } from './ConnectionManager.js'; export type { OnboardingFlow, SetupResult, TestResult, UserPreferences, OnboardingState, } from './OnboardingFlow.js';