Files
oh-my-opencode/dist/hooks/anthropic-context-window-limit-recovery/empty-content-recovery-sdk.d.ts
T
2026-03-14 04:56:50 +00:00

12 lines
297 B
TypeScript

import type { Client } from "./client";
export declare function fixEmptyMessagesWithSDK(params: {
sessionID: string;
client: Client;
placeholderText: string;
messageIndex?: number;
}): Promise<{
fixed: boolean;
fixedMessageIds: string[];
scannedEmptyCount: number;
}>;