a bit verbose but I have used a pattern of making a structure type and then instantiating:
type structure<'a, 'b> = { name: 'a, age: 'b}
type t = structure<string, int>
type opt = structure<option<string>, option<int>>
a bit verbose but I have used a pattern of making a structure type and then instantiating:
type structure<'a, 'b> = { name: 'a, age: 'b}
type t = structure<string, int>
type opt = structure<option<string>, option<int>>