--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: ts/call_expression.ts --- # Input ```ts app.get("/", (req, res): void => { res.send("Hello World!"); }) export class Thing implements OtherThing { do: (type: Type) => Provider = memoize( (type: ObjectType): Provider => {} ); } // Issue https://github.com/rome/tools/issues/2756 export class Task { args: any[]; constructor( public script: string, public duration: number, public threadCount: number, ...args: any[] ) { this.args = args; } } ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Line width: 80 Quote style: Double Quotes Quote properties: As needed Trailing comma: All Semicolons: Always ----- ```ts app.get("/", (req, res): void => { res.send("Hello World!"); }); export class Thing implements OtherThing { do: (type: Type) => Provider = memoize( (type: ObjectType): Provider => {}, ); } // Issue https://github.com/rome/tools/issues/2756 export class Task { args: any[]; constructor( public script: string, public duration: number, public threadCount: number, ...args: any[] ) { this.args = args; } } ```