persona-community-5/.pnpm-store/v3/files/af/1fd893b2c4d2a11aa0d85c179c69d8426d91c0242f9cae66eef41909b5c922319d28f3fafc7f01966ac17d0380cf3a238c4a687b8166798e415efb7aa15db7
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

16 lines
662 B
Plaintext

type ObjectLike<T = unknown> = Record<string, T>;
/**
* Check if the variable contains an object strictly rejecting arrays
* @returns `true` if obj is an object
*/
declare function isObjectNotArray(obj: unknown): obj is ObjectLike;
/**
* Pure function - doesn't mutate either parameter!
* Merges two objects together deeply, overwriting the properties in first with the properties in second
* @param first The first object
* @param second The second object
* @returns a new object
*/
export declare function deepMerge(first?: ObjectLike, second?: ObjectLike): Record<string, unknown>;
export { isObjectNotArray };
//# sourceMappingURL=deepMerge.d.ts.map