Spaces:
Runtime error
Runtime error
File size: 185 Bytes
029d2df | 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 }];
}
|