Spaces:
Paused
Paused
File size: 185 Bytes
8523e75 | 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 }];
}
|