Append to object medium #object-keys

by Andrey Krasovsky @bre30kra69cs

Take the Challenge    简体中文 日本語 한국어

Implement a type that adds a new field to the interface. The type takes the three arguments. The output should be an object with the new field. For example ```ts type Test = { id: '1' } type Result = AppendToObject // expected to be { id: '1', value: 4 } ```
Back Share your Solutions Check out Solutions