summaryrefslogtreecommitdiffhomepage
path: root/packages/plugin/src/index.ts
diff options
context:
space:
mode:
authorSebastian <[email protected]>2026-03-28 00:44:46 +0100
committerGitHub <[email protected]>2026-03-27 23:44:46 +0000
commitf3997d8082413c8b3a506d24fbfb3c58a0c3dedb (patch)
tree615a6331ab6896abd62a05a9a2894e34203e098a /packages/plugin/src/index.ts
parent02b19bc3d733ee2e4220971fa421d4a6f05a9468 (diff)
downloadopencode-f3997d8082413c8b3a506d24fbfb3c58a0c3dedb.tar.gz
opencode-f3997d8082413c8b3a506d24fbfb3c58a0c3dedb.zip
Single target plugin entrypoints (#19467)
Diffstat (limited to 'packages/plugin/src/index.ts')
-rw-r--r--packages/plugin/src/index.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/plugin/src/index.ts b/packages/plugin/src/index.ts
index d289689b9..a264cf5aa 100644
--- a/packages/plugin/src/index.ts
+++ b/packages/plugin/src/index.ts
@@ -42,7 +42,8 @@ export type Plugin = (input: PluginInput, options?: PluginOptions) => Promise<Ho
export type PluginModule = {
id?: string
- server?: Plugin
+ server: Plugin
+ tui?: never
}
type Rule = {