(data: string)
| 117 | } |
| 118 | |
| 119 | function encodeSseFrame(data: string): Uint8Array { |
| 120 | return new TextEncoder().encode(`data: ${data}\n\n`) |
| 121 | } |
| 122 | |
| 123 | function isRequestNotification(message: Record<string, unknown>, requestId: string): boolean { |
| 124 | const params = message.params |