Files
oh-my-opencode/dist/hooks/auto-update-checker/hook.d.ts
T
2026-03-14 04:56:50 +00:00

11 lines
354 B
TypeScript

import type { PluginInput } from "@opencode-ai/plugin";
import type { AutoUpdateCheckerOptions } from "./types";
export declare function createAutoUpdateCheckerHook(ctx: PluginInput, options?: AutoUpdateCheckerOptions): {
event: ({ event }: {
event: {
type: string;
properties?: unknown;
};
}) => void;
};