Cannot parse: ``` FrusterRequest<Foo | Bar> ``` A workaround is to do below, but above should be possible. ``` type Req = Foo | Bar //... FrusterRequest<Req> ```