what is the closest to `with` syntax like this ```fsharp let originalPerson = { Name = "Alice"; Age = 30 } let updatedPerson = { originalPerson with Age = 31 } ``` in TypeScript to update objects