feat: add 'dev-server:url-detected' event type to EventType

- Introduced a new event type 'dev-server:url-detected' to enhance event handling for the development server.
- This addition allows for better tracking and response to URL detection during server operations.

These changes improve the event system's capability to manage server-related events effectively.
This commit is contained in:
Kacper
2026-02-05 23:19:31 +01:00
parent f97453484f
commit 220c8e4ddf

View File

@@ -46,6 +46,7 @@ export type EventType =
| 'dev-server:started' | 'dev-server:started'
| 'dev-server:output' | 'dev-server:output'
| 'dev-server:stopped' | 'dev-server:stopped'
| 'dev-server:url-detected'
| 'test-runner:started' | 'test-runner:started'
| 'test-runner:progress' | 'test-runner:progress'
| 'test-runner:output' | 'test-runner:output'