UNPKG

merge-left-utils

Version:

Merge objects without structure changes

6 lines (5 loc) 224 B
export declare type DeepPartial<T> = { [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P]; }; export declare const isLikeObject: (value: any) => boolean; export declare const alwaysTrue: () => boolean;