UNPKG

889 BTypeScriptView Raw
1export default main;
2export declare function main(clone: boolean, ...items: any[]): any;
3export declare namespace main {
4 var clone: typeof import(".").clone;
5 var isPlainObject: typeof import(".").isPlainObject;
6 var recursive: typeof import(".").recursive;
7}
8export declare function main(...items: any[]): any;
9export declare namespace main {
10 var clone: typeof import(".").clone;
11 var isPlainObject: typeof import(".").isPlainObject;
12 var recursive: typeof import(".").recursive;
13}
14export declare function merge(clone: boolean, ...items: any[]): any;
15export declare function merge(...items: any[]): any;
16export declare function recursive(clone: boolean, ...items: any[]): any;
17export declare function recursive(...items: any[]): any;
18export declare function clone<T>(input: T): T;
19export declare function isPlainObject(input: any): input is Object;