DefinitelyTyped/types/object-joiner/object-joiner-tests.ts
Tim Kang af7022a5f1 [object-joiner] add @types (#38494)
* Update index.d.ts

* add object-joiner typings
2019-09-23 17:12:08 -07:00

12 lines
136 B
TypeScript

import objectJoiner = require("object-joiner");
const rs: any = objectJoiner(
{
a: 1234,
x: 2222
},
{
a: 5555
}
);