@stacksjs/stx
Version:
A performant UI Framework. Powered by Bun.
14 lines • 455 B
TypeScript
/**
* Start interactive CLI mode
*/
export declare function startInteractive(options?: InteractiveOptions): Promise<void>;
// =============================================================================
// Types
// =============================================================================
export declare interface InteractiveOptions {
context?: Record<string, any>
cwd?: string
verbose?: boolean
historyFile?: string
maxHistory?: number
}