Copies all enumerable own properties from one target object to a source array of objects.
type T = Assign<{ a: 'd'; d: 'd' }, [{ a: 'a' }, { b: 'b' }, { c: 'c' }]>// Result:{ a: 'a'; b: 'b'; c: 'c'; d: 'd'; } Copy
type T = Assign<{ a: 'd'; d: 'd' }, [{ a: 'a' }, { b: 'b' }, { c: 'c' }]>// Result:{ a: 'a'; b: 'b'; c: 'c'; d: 'd'; }
Copies all enumerable own properties from one target object to a source array of objects.