| 24 | } |
| 25 | |
| 26 | interface SketchServer { |
| 27 | wss: WebSocketServer; |
| 28 | close: () => void; |
| 29 | getActiveClient: () => WebSocket | null; |
| 30 | } |
| 31 | |
| 32 | export function attachUndoIdsToBatchResults( |
| 33 | results: Array<{ op: BatchOperation["op"]; file: string; line: number; success: boolean; error?: string }>, |
nothing calls this directly
no outgoing calls
no test coverage detected