Files
oh-my-opencode/dist/cli/run/server-connection.d.ts
T
2026-03-14 04:56:50 +00:00

7 lines
203 B
TypeScript

import type { ServerConnection } from "./types";
export declare function createServerConnection(options: {
port?: number;
attach?: string;
signal: AbortSignal;
}): Promise<ServerConnection>;