Files
oh-my-opencode/dist/hooks/anthropic-context-window-limit-recovery/empty-content-recovery-sdk.d.ts
T

12 lines
297 B
TypeScript
Raw Normal View History

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;
}>;