Files
oh-my-opencode/dist/hooks/claude-code-hooks/handlers/session-event-handler.d.ts
T
2026-03-14 04:56:50 +00:00

9 lines
296 B
TypeScript

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