/** * Compute a deterministic IPC socket path for a given graph directory. * * On POSIX this is just `/graph.sock`. The file is short-lived — * the leader unlinks it on exit, and a stale file is cleaned up by * `startIpcServer` on next boot. * * On Windows, Unix domain socket paths are problematic (path length limits, * AF_UNIX support is recent). Node supports named pipes via the same * `net.createServer().listen(path)` API when the path has the magic prefix * `\\.\pipe\...`. Since named pipes live in a global namespace, we hash the * graph directory to produce a collision-resistant unique name per * (projectId, cwd). */ export declare function graphSocketPath(graphDir: string): string; //# sourceMappingURL=socket-path.d.ts.map