UNPKG

goban

Version:

[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/online-go/goban)

15 lines (14 loc) 552 B
import { ServerToClient } from "./ServerToClient"; export interface AIServerToClient { /** Pong response from a ping */ "net/pong": ServerToClient["net/pong"]; /** AI review messages are streamed back to the AI review UUID. */ [uuid: string]: (data: any) => void; /** AI position analysis messages streaming back to a particular channel */ [k: `ai-position-analysis-stream-review-${string}`]: (data: { board_string: string; analysis: any; final: boolean; intermediate: boolean; }) => void; }