index.d.ts 870 B

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