Files
oh-my-opencode/dist/plugin/unstable-agent-babysitter.d.ts
T
2026-03-14 04:56:50 +00:00

16 lines
483 B
TypeScript

import type { OhMyOpenCodeConfig } from "../config";
import type { PluginContext } from "./types";
import type { BackgroundManager } from "../features/background-agent";
export declare function createUnstableAgentBabysitter(args: {
ctx: PluginContext;
backgroundManager: BackgroundManager;
pluginConfig: OhMyOpenCodeConfig;
}): {
event: ({ event }: {
event: {
type: string;
properties?: unknown;
};
}) => Promise<void>;
};