@opencode-ai/sdk 0.5.2 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gen/types.gen.d.ts +9 -0
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -484,6 +484,15 @@ export type Config = {
|
|
|
484
484
|
* Custom keybind configurations
|
|
485
485
|
*/
|
|
486
486
|
keybinds?: KeybindsConfig;
|
|
487
|
+
/**
|
|
488
|
+
* TUI specific settings
|
|
489
|
+
*/
|
|
490
|
+
tui?: {
|
|
491
|
+
/**
|
|
492
|
+
* TUI scroll speed
|
|
493
|
+
*/
|
|
494
|
+
scroll_speed: number;
|
|
495
|
+
};
|
|
487
496
|
plugin?: Array<string>;
|
|
488
497
|
snapshot?: boolean;
|
|
489
498
|
/**
|