--- source: crates/biome_formatter_test/src/snapshot_builder.rs info: 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; } } // Issue https://github.com/biomejs/biome/issues/1171 users.map((user: User): User => { ; // comment }) users.map((user: User): User => { // comment }) ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Indent width: 2 Line ending: LF Line width: 80 Quote style: Double Quotes JSX quote style: Double Quotes Quote properties: As needed Trailing comma: All Semicolons: Always Arrow parentheses: Always Bracket spacing: true Bracket same line: false Attribute Position: Auto ----- ```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; } } // Issue https://github.com/biomejs/biome/issues/1171 users.map((user: User): User => { // comment }); users.map((user: User): User => { // comment }); ```