UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

14 lines (13 loc) 352 B
/** * Shared CLI formatting utilities * * Common formatting functions used across CLI command modules. */ /** * Format a table row with padding */ export declare function formatRow(label: string, value: string, width?: number): string; /** * Format currency value */ export declare function formatCost(cost: number, currency?: string): string;