~~ constructSignature.forceMultiLineParameters: true, lineWidth: 40 ~~
== should force multi-line parameters when exceeding the line width ==
interface T {
    new(testing, thisOut, byExceeding, theLineWidth): void;
}

[expect]
interface T {
    new(
        testing,
        thisOut,
        byExceeding,
        theLineWidth
    ): void;
}

== should not be multi-line when not exceeding the line width ==
interface T {
    new (testing, thisOut): void;
}

[expect]
interface T {
    new(testing, thisOut): void;
}
