UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with external MCP server integration, multi-provider support, and professional CLI. Connect to 65+ MCP servers for filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 9 major pr

13 lines (12 loc) 335 B
/** * NeuroLink Logger Utility * * Provides conditional logging based on NEUROLINK_DEBUG environment variable */ export declare const logger: { debug: (...args: any[]) => void; info: (...args: any[]) => void; warn: (...args: any[]) => void; error: (...args: any[]) => void; always: (...args: any[]) => void; };