All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scripts.node_modules.deepmerge.index.d.ts Maven / Gradle / Ivy

The newest version!
declare function deepmerge(x: Partial, y: Partial, options?: deepmerge.Options): T;
declare function deepmerge(x: Partial, y: Partial, options?: deepmerge.Options): T1 & T2;

declare namespace deepmerge {
	export interface Options {
		arrayMerge?(target: any[], source: any[], options?: Options): any[];
		clone?: boolean;
		customMerge?: (key: string, options?: Options) => ((x: any, y: any) => any) | undefined;
		isMergeableObject?(value: object): boolean;
	}

	export function all (objects: object[], options?: Options): object;
	export function all (objects: Partial[], options?: Options): T;
}

export = deepmerge;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy