Files
oh-my-opencode/dist/tools/background-task/full-session-format.d.ts
T
2026-03-14 04:56:50 +00:00

10 lines
406 B
TypeScript

import type { BackgroundTask } from "../../features/background-agent";
import type { BackgroundOutputClient } from "./clients";
export declare function formatFullSession(task: BackgroundTask, client: BackgroundOutputClient, options: {
includeThinking: boolean;
messageLimit?: number;
sinceMessageId?: string;
includeToolResults: boolean;
thinkingMaxChars?: number;
}): Promise<string>;