A question about ReasonML/Rescript/OCaml on JS.
How do you deal with the lack of structure inheritance?
I'm mainly a backend dev with OOP background so I'm probably not seeing something.
But at work, our frontend has a lot of types (TS) like this:
```
type Client = BaseClient & {
assignees: Actor[]
}
```
We use these for types that we get from API (a base type + some additional fields).
How would you model something like that in Reason/Rescript/OCaml?