(eventType: string, data: any)
| 548 | start(controller) { |
| 549 | // Helper function to send SSE events |
| 550 | const sendEvent = (eventType: string, data: any) => { |
| 551 | controller.enqueue( |
| 552 | `event: ${eventType}\ndata: ${JSON.stringify(data)}\n\n` |
| 553 | ); |
| 554 | }; |
| 555 | |
| 556 | // Self-invoking async function to handle the report generation process |
| 557 | (async () => { |