Create simple-assign.d.ts

This commit is contained in:
Ivo Stratev
2016-08-18 15:42:15 +03:00
committed by GitHub
parent 9b94d577a8
commit cb827241b8

8
simple-assign/simple-assign.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
// Type definitions for simple-assign 0.1.0
// Project: https://github.com/sindresorhus/object-assign
// Definitions by: Ivo Stratev <https://github.com/NoHomey>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "simple-assign" {
export defualt function(target: any, ...sources: any[]): any;
}