Assigns the properties of U onto T.
Assign<{ a: string, b: number }, { a: undefined, c: boolean }>=> { a: undefined, b: number, c: boolean } Copy
Assign<{ a: string, b: number }, { a: undefined, c: boolean }>=> { a: undefined, b: number, c: boolean }
Generated using TypeDoc
Description
Assigns the properties of U onto T.
Example