questions/00527-medium-append-to-object/README.md
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
type Test = { id: '1' }
type Result = AppendToObject<Test, 'value', 4> // expected to be { id: '1', value: 4 }
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/527/answer" target="_blank"></a> <a href="https://tsch.js.org/527/solutions" target="_blank"></a> <!--info-footer-end-->