Files
oh-my-opencode/dist/hooks/session-recovery/storage/thinking-prepend.d.ts
T
2026-03-14 04:56:50 +00:00

6 lines
334 B
TypeScript

import type { PluginInput } from "@opencode-ai/plugin";
type OpencodeClient = PluginInput["client"];
export declare function prependThinkingPart(sessionID: string, messageID: string): boolean;
export declare function prependThinkingPartAsync(client: OpencodeClient, sessionID: string, messageID: string): Promise<boolean>;
export {};