@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
17 lines (16 loc) • 659 B
TypeScript
import type { ProxyHealthResponse, ProxyReadinessState } from "../types/index.js";
export declare function createProxyReadinessState(startTimeMs?: number): ProxyReadinessState;
export declare function markProxyReady(state: ProxyReadinessState, readyAtMs?: number): void;
export declare function buildProxyHealthResponse(state: ProxyReadinessState, options: {
strategy: string;
passthrough: boolean;
version: string;
now?: number;
}): ProxyHealthResponse;
export declare function waitForProxyReadiness(args: {
host: string;
port: number;
timeoutMs?: number;
intervalMs?: number;
fetchImpl?: typeof fetch;
}): Promise<void>;