Files
opencode/packages/plugin/src/effect/shell.ts
T
2026-07-29 14:11:52 -05:00

18 lines
343 B
TypeScript

import type { Hooks } from "./registration.js"
export interface ShellCreateBefore {
command: string
cwd: string
timeout: number
shell: string
env: Record<string, string | undefined>
}
export interface ShellHooks {
readonly "create.before": ShellCreateBefore
}
export interface ShellDomain {
readonly hook: Hooks<ShellHooks>
}