~~ lineWidth: 50 ~~
== should format ==
export  *  from   "test"  ;
export type  *  from   "test"  ;

[expect]
export * from "test";
export type * from "test";

== should format assertions ==
export * from "a" assert {type: "json"};
export * from "testingtesttest" assert { type: "json" };

[expect]
export * from "a" assert { type: "json" };
export * from "testingtesttest" assert {
    type: "json",
};

== should format attributes ==
export * from "a" with {type: "json"};
export * from "testingtesttest" with { type: "json" };

[expect]
export * from "a" with { type: "json" };
export * from "testingtesttest" with {
    type: "json",
};
