(res: Response, event: string, data: unknown)
| 2147 | // ==================== SSE 工具函数 ==================== |
| 2148 | |
| 2149 | function writeSSE(res: Response, event: string, data: unknown): void { |
| 2150 | res.write(`event: ${event}\ndata: ${JSON.stringify(data)}\n\n`); |
| 2151 | // @ts-expect-error flush exists on ServerResponse when compression is used |
| 2152 | if (typeof res.flush === 'function') res.flush(); |
| 2153 | } |
no test coverage detected