Files
oh-my-opencode/dist/hooks/claude-code-hooks/handlers/session-event-handler.d.ts
T

9 lines
296 B
TypeScript
Raw Normal View History

import type { PluginInput } from "@opencode-ai/plugin";
import type { PluginConfig } from "../types";
export declare function createSessionEventHandler(ctx: PluginInput, config: PluginConfig): (input: {
event: {
type: string;
properties?: unknown;
};
}) => Promise<void>;