[Playground link](https://playground.oxc.rs/#eNo9T7sOwjAM/JXIE0gdAIklPAYGvoCxSwguipTalWMeVZV/J6VqJ5/t851vAA8WPFNS80RCCf5K5mSOt+q8apitua3N6WyGmmrVvkNzcVL2Qz7UlA9QAYMdQF40ltSTui9YlRdWEAPpjJPnDpemb+8c507FUWpYWrCNiwlzBZ2ThFIUCx5VZrxQ/wNQJ08sFoBpt9nuoTA8P7DkmOhtoNCE+biEVOF4jfwZj98od07lp8k05x+N1ltj) input: ```tsx const genericFn = <T,>(foo: T) => { type Bar = {}; }; ``` output: ```tsx const genericFn = <T>(foo: T) => { type Bar = {}; }; ``` expected output: ```tsx const genericFn = <T,>(foo: T) => { type Bar = {}; }; ```