Emitted when a session moves to the foreground (TUI+server mode).
| 961 | |
| 962 | @dataclass |
| 963 | class SessionForegroundEvent(SessionLifecycleEventBase): |
| 964 | """Emitted when a session moves to the foreground (TUI+server mode).""" |
| 965 | |
| 966 | type: ClassVar[Literal["session.foreground"]] = "session.foreground" |
| 967 | |
| 968 | |
| 969 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…