~~ lineWidth: 40 ~~
== should format ==
type T = Ref;

[expect]
type T = Ref;

== should format with type parameters ==
type T = Ref< string   , number >;
// trailing comma not allowed by TS here :(
type U = Ref< string   , number, ottttthhheerr >;

[expect]
type T = Ref<string, number>;
// trailing comma not allowed by TS here :(
type U = Ref<
    string,
    number,
    ottttthhheerr
>;
