I'm currently working on a function that requires an object parameter, and I want the code editor to display a dropdown menu with possible inputs. For example:
function(string, {type: 'someType'})
After typing {type: ''}
, a dropdown menu should appear with various types, including 'someType'.
This is the desired functionality, but I haven't been able to figure out how to implement it yet.