(event: ExecutionEvent)
| 258 | * Helper to encode SSE event as Uint8Array |
| 259 | */ |
| 260 | export function encodeSSEEvent(event: ExecutionEvent): Uint8Array { |
| 261 | return new TextEncoder().encode(formatSSEEvent(event)) |
| 262 | } |
| 263 | |
| 264 | /** |
| 265 | * Options for creating SSE execution callbacks |
no test coverage detected