mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-16 10:50:38 +09:00
6 lines
182 B
TypeScript
6 lines
182 B
TypeScript
|
|
import type { TranscriptEntry } from "../types";
|
||
|
|
|
||
|
|
export function parseHttpStdoutLine(line: string, ts: string): TranscriptEntry[] {
|
||
|
|
return [{ kind: "stdout", ts, text: line }];
|
||
|
|
}
|