@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
12 lines (11 loc) • 400 B
TypeScript
/**
* Unified credential masking utility for CLI setup commands.
*
* Preserves known provider prefixes (sk-, sk-ant-, AIza, AKIA) so
* users can identify which key is configured, while hiding the secret
* portion with asterisks.
*
* @param credential - Raw API key or secret
* @returns Masked string, e.g. "sk-****abcd"
*/
export declare function maskCredential(credential: string): string;