.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / @typescript-eslint / experimental-utils / _ts3.4 / dist / eslint-utils / deepMerge.d.ts
1 declare type ObjectLike<T = unknown> = Record<string, T>;\r
2 /**\r
3  * Check if the variable contains an object strictly rejecting arrays\r
4  * @param obj an object\r
5  * @returns `true` if obj is an object\r
6  */\r
7 declare function isObjectNotArray<T extends ObjectLike>(obj: unknown | unknown[]): obj is T;\r
8 /**\r
9  * Pure function - doesn't mutate either parameter!\r
10  * Merges two objects together deeply, overwriting the properties in first with the properties in second\r
11  * @param first The first object\r
12  * @param second The second object\r
13  * @returns a new object\r
14  */\r
15 export declare function deepMerge(first?: ObjectLike, second?: ObjectLike): Record<string, unknown>;\r
16 export { isObjectNotArray };\r
17 //# sourceMappingURL=deepMerge.d.ts.map\r