1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/**
* Outward events — the event type the runtime emits to the outside world.
*
* Re-exported from @dispatch/wire so the kernel barrel surface stays
* byte-identical. The canonical definitions live in @dispatch/wire.
*/
export type {
AgentEvent,
StatusEvent,
TurnDoneEvent,
TurnErrorEvent,
TurnInputEvent,
TurnProviderRetryEvent,
TurnReasoningDeltaEvent,
TurnSealedEvent,
TurnStartEvent,
TurnSteeringEvent,
TurnStepCompleteEvent,
TurnTextDeltaEvent,
TurnToolCallEvent,
TurnToolOutputEvent,
TurnToolResultEvent,
TurnUsageEvent,
} from "@dispatch/wire";
|