Files
oh-my-opencode/dist/hooks/runtime-fallback/session-status-handler.d.ts
T
2026-03-14 04:56:50 +00:00

4 lines
298 B
TypeScript

import type { HookDeps } from "./types";
import type { AutoRetryHelpers } from "./auto-retry";
export declare function createSessionStatusHandler(deps: HookDeps, helpers: AutoRetryHelpers, sessionStatusRetryKeys: Map<string, string>): (props: Record<string, unknown> | undefined) => Promise<void>;