@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and
22 lines (21 loc) • 508 B
JavaScript
/**
* CLI-specific type definitions for NeuroLink
*/
/**
* Type guard for generate result
*/
export function isGenerateResult(value) {
return (typeof value === "object" &&
value !== null &&
"content" in value &&
typeof value.content === "string");
}
/**
* Type guard for command result
*/
export function isCommandResult(value) {
return (typeof value === "object" &&
value !== null &&
"success" in value &&
typeof value.success === "boolean");
}