(commit: StreamCommit)
| 15 | } |
| 16 | |
| 17 | export function entryFailed(commit: StreamCommit): boolean { |
| 18 | return commit.kind === "tool" && (commit.toolState === "error" || commit.part?.state.status === "error") |
| 19 | } |
| 20 | |
| 21 | export function entryLook(commit: StreamCommit, theme: RunEntryTheme): { fg: ColorInput; attrs?: number } { |
| 22 | if (commit.kind === "user") { |
no outgoing calls
no test coverage detected