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:
JAYADITYA
2025-09-22 21:00:11 +05:30
committed by GitHub
parent 81d03cb524
commit 92543da28c
4 changed files with 43 additions and 7 deletions

View File

@@ -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);