~~ constructorType.spaceAfterNewKeyword: true ~~
== should format ==
type Test = new() => Date;
type Test2 = new <T>() => Date;

[expect]
type Test = new () => Date;
type Test2 = new <T>() => Date;
