(value: ShellRunStatus)
| 167 | } |
| 168 | |
| 169 | export function isActiveShellRunStatus(value: ShellRunStatus): value is ShellRunActiveStatus { |
| 170 | return (SHELL_RUN_ACTIVE_STATUSES as readonly string[]).includes(value); |
| 171 | } |
| 172 | |
| 173 | export function isValidShellRunStatusTransition( |
| 174 | current: ShellRunStatus, |
no outgoing calls