2026-02-21 17:44:03 -07:00

16 lines
480 B
TypeScript

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