--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: test_file: ts/assignment/as_assignment.ts --- # Input ```ts let binding; (binding as boolean) = true; (binding.very.long.chain.of.static.members as VeryLongTypeName) = veryLongExpression(); ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Line width: 80 Quote style: Double Quotes Quote properties: As needed Trailing comma: All Semicolons: Always ----- ```ts let binding; (binding as boolean) = true; (binding.very.long.chain.of.static.members as VeryLongTypeName) = veryLongExpression(); ```