b152fd5
1
2
3
4
5
6
import type { TranscriptEntry } from "../types"; export function parseProcessStdoutLine(line: string, ts: string): TranscriptEntry[] { return [{ kind: "stdout", ts, text: line }]; }