diff options
Diffstat (limited to 'packages/plugin/src/index.ts')
| -rw-r--r-- | packages/plugin/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/plugin/src/index.ts b/packages/plugin/src/index.ts index be9822ee2..d0d484a00 100644 --- a/packages/plugin/src/index.ts +++ b/packages/plugin/src/index.ts @@ -1,10 +1,10 @@ import type { Event, createOpencodeClient, App, Model, Provider, Permission, UserMessage, Part } from "@opencode-ai/sdk" -import { $ } from "bun" +import type { BunShell } from "./shell" export type PluginInput = { client: ReturnType<typeof createOpencodeClient> app: App - $: $ + $: BunShell } export type Plugin = (input: PluginInput) => Promise<Hooks> |
