// Type definitions for object-assign 4.0.1 // Project: https://github.com/sindresorhus/object-assign // Definitions by: Christopher Brown // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module "object-assign" { function objectAssign(target: any, ...sources: any[]): any; export = objectAssign; }