Files
memecoin-botV2/.pnpm-store/v10/files/36/4bc97cf171c1c4b828615fe9ab0fdb9fb2d62cf022b434bcc90712d17849b4da69e1f14ef78f143507a7af15a611e24dd021d716d759a97eab04dbf3ad71fe

15 lines
608 B
Plaintext

export type ObjectLike<T = unknown> = Record<string, T>;
/**
* Check if the variable contains an object strictly rejecting arrays
* @returns `true` if obj is an object
*/
export 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>;