summaryrefslogtreecommitdiffhomepage
path: root/packages/sdk/js/src
diff options
context:
space:
mode:
authorSebastian <[email protected]>2026-03-27 15:00:26 +0100
committerGitHub <[email protected]>2026-03-27 15:00:26 +0100
commit6274b0677c1c65815c525b9b199f1ce5c6fb97fc (patch)
tree399fdba174e350c2f86c2deba047ac8b17ce43bf /packages/sdk/js/src
parentd8ad8338f5311ac6692ebc362d28389e028f6aad (diff)
downloadopencode-6274b0677c1c65815c525b9b199f1ce5c6fb97fc.tar.gz
opencode-6274b0677c1c65815c525b9b199f1ce5c6fb97fc.zip
tui plugins (#19347)
Diffstat (limited to 'packages/sdk/js/src')
-rw-r--r--packages/sdk/js/src/v2/gen/types.gen.ts10
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/sdk/js/src/v2/gen/types.gen.ts b/packages/sdk/js/src/v2/gen/types.gen.ts
index 4a2ae9591..ce5a47f84 100644
--- a/packages/sdk/js/src/v2/gen/types.gen.ts
+++ b/packages/sdk/js/src/v2/gen/types.gen.ts
@@ -1447,7 +1447,15 @@ export type Config = {
watcher?: {
ignore?: Array<string>
}
- plugin?: Array<string>
+ plugin?: Array<
+ | string
+ | [
+ string,
+ {
+ [key: string]: unknown
+ },
+ ]
+ >
/**
* Enable or disable snapshot tracking. When false, filesystem snapshots are not recorded and undoing or reverting will not undo/redo file changes. Defaults to true.
*/