@kya-os/cli
Version:
CLI for KYA-OS MCP-I setup and management
14 lines • 437 B
TypeScript
/**
* Box Drawing Component
* Creates beautiful boxes for CLI output without dependencies
*/
import { BoxOptions } from "./types.js";
/**
* Create a box around content
*/
export declare function createBox(content: string | string[], options?: BoxOptions): string;
/**
* Create a divider line
*/
export declare function createDivider(width?: number, style?: 'single' | 'double' | 'heavy'): string;
//# sourceMappingURL=box.d.ts.map