mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
136 B
TypeScript
12 lines
136 B
TypeScript
import objectJoiner = require("object-joiner");
|
|
|
|
const rs: any = objectJoiner(
|
|
{
|
|
a: 1234,
|
|
x: 2222
|
|
},
|
|
{
|
|
a: 5555
|
|
}
|
|
);
|