Files
oh-my-opencode/dist/hooks/anthropic-context-window-limit-recovery/pruning-tool-output-truncation.d.ts
T
2026-03-14 04:56:50 +00:00

7 lines
273 B
TypeScript

import type { PluginInput } from "@opencode-ai/plugin";
type OpencodeClient = PluginInput["client"];
export declare function truncateToolOutputsByCallId(sessionID: string, callIds: Set<string>, client?: OpencodeClient): Promise<{
truncatedCount: number;
}>;
export {};