Sha256: 146ba4b99c5feb82663e17a671bf9f53bb39c704cd76345d6c5a801c26372f44

Contents?: true

Size: 823 Bytes

Versions: 26

Compression:

Stored size: 823 Bytes

Contents

declare function deepmerge<T>(x: Partial<T>, y: Partial<T>, options?: deepmerge.Options): T;
declare function deepmerge<T1, T2>(x: Partial<T1>, y: Partial<T2>, options?: deepmerge.Options): T1 & T2;

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

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

export = deepmerge;

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
clapton-0.0.26 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.25 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.24 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.23 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.22 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.21 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.20 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.19 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.18 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.17 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.16 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.15 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.14 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.13 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.12 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.11 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.10 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.9 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.8 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts
clapton-0.0.7 lib/clapton/javascripts/node_modules/deepmerge/index.d.ts