Files
n8n-nodes-gwezz-changdunovel/node_modules/eslint-plugin-import-x/lib/utils/deep-merge.d.ts
2025-10-26 23:10:15 +08:00

4 lines
233 B
TypeScript

export type ObjectLike<T = unknown> = Record<string, T>;
export declare function isObjectNotArray(obj: unknown): obj is ObjectLike;
export declare function deepMerge(first?: ObjectLike, second?: ObjectLike): Record<string, unknown>;