11 lines
354 B
TypeScript
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;
|
|
};
|