vscode/build/lib/typings/object-assign.d.ts
2015-11-13 14:39:38 +01:00

4 lines
102 B
TypeScript

declare module 'object-assign' {
function fn(target: any, ...sources: any[]): any;
export = fn;
}