MCP-SuperAssistant/dist/gateways/stdioToStatelessStreamableHttp.d.ts
2026-02-21 17:44:03 -07:00

14 lines
507 B
TypeScript

import { type CorsOptions } from 'cors';
import { Logger } from '../types.js';
export interface StdioToStreamableHttpArgs {
stdioCmd: string;
port: number;
host: string;
streamableHttpPath: string;
logger: Logger;
corsOrigin: CorsOptions['origin'];
healthEndpoints: string[];
headers: Record<string, string>;
}
export declare function stdioToStatelessStreamableHttp(args: StdioToStreamableHttpArgs): Promise<void>;
//# sourceMappingURL=stdioToStatelessStreamableHttp.d.ts.map