mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-18 11:40:39 +09:00
6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
|
|
import type { TranscriptEntry } from "@paperclip/adapter-utils";
|
||
|
|
|
||
|
|
export function parseOpenClawStdoutLine(line: string, ts: string): TranscriptEntry[] {
|
||
|
|
return [{ kind: "stdout", ts, text: line }];
|
||
|
|
}
|