mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-06 03:10:42 -07:00
fix(config):Reviving CustomWitty feature (#8432)
Co-authored-by: Richie Foreman <richie.foreman@gmail.com> Co-authored-by: Arya Gummadi <aryagummadi@google.com>
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
import { MergeStrategy } from '../config/settingsSchema.js';
|
||||
|
||||
type Mergeable =
|
||||
export type Mergeable =
|
||||
| string
|
||||
| number
|
||||
| boolean
|
||||
@@ -15,7 +15,7 @@ type Mergeable =
|
||||
| object
|
||||
| Mergeable[];
|
||||
|
||||
type MergeableObject = Record<string, Mergeable>;
|
||||
export type MergeableObject = Record<string, Mergeable>;
|
||||
|
||||
function isPlainObject(item: unknown): item is MergeableObject {
|
||||
return !!item && typeof item === 'object' && !Array.isArray(item);
|
||||
|
||||
Reference in New Issue
Block a user