Files
DefinitelyTyped/object-assign/object-assign.d.ts
2016-04-22 14:12:45 -07:00

9 lines
328 B
TypeScript

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