Given code like this: ```fsharp let myFunc x = x.ToString() ``` There should be a quick action available to convert it to this: ```fsharp let myFunc (x: 'a) : string = x.ToString() ``` This would require some work to get the inferred types of the `let`-bound value(s) and each parameter if it's a function, and their ranges.