@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
19 lines (18 loc) • 483 B
TypeScript
/**
* Setup Command Factory for NeuroLink
* Consolidates all provider setup commands into a unified interface
*/
import type { CommandModule } from "yargs";
/**
* Setup Command Factory
*/
export declare class SetupCommandFactory {
/**
* Create the main setup command with all provider subcommands
*/
static createSetupCommands(): CommandModule;
/**
* Build common options for provider setup commands
*/
private static buildProviderOptions;
}