~~ typeLiteral.separatorKind.singleLine: comma, typeLiteral.separatorKind.multiLine: semiColon, lineWidth: 40 ~~
== should use commas when single line ==
type Test = { p: string, u: number };

[expect]
type Test = { p: string, u: number };

== should use semi-colons when multi-line ==
type Test = {
    p: string, u: number };

[expect]
type Test = {
    p: string;
    u: number;
};

== should use semi-colons going from single line to multi ==
type Test = { p: string, u: number, test: other };

[expect]
type Test = {
    p: string;
    u: number;
    test: other;
};

== should handle comments after commas ==
type Test = {
    p: string, // testing
    u: number // testing
    };

[expect]
type Test = {
    p: string; // testing
    u: number; // testing
};
