Files
oh-my-opencode/dist/hooks/atlas/idle-event.d.ts
T

9 lines
322 B
TypeScript
Raw Normal View History

import type { PluginInput } from "@opencode-ai/plugin";
import type { AtlasHookOptions, SessionState } from "./types";
export declare function handleAtlasSessionIdle(input: {
ctx: PluginInput;
options?: AtlasHookOptions;
getState: (sessionID: string) => SessionState;
sessionID: string;
}): Promise<void>;