I'm looking to create a Quick Fix shortcut (cmd + .
) that automatically adds the explicit type to a field, parameter, or function return (when it's not explicitly defined).
For example:
const specificQuesiton = await Question.query().findById(1)
Would be transformed into:
const specificQuestion: Question = await Question.query().findById(1)