Visual Studio Javascript Intellisense - options object
问题 I'd like to get Intellisense support in Visual Studio for the options objects I use in my method calls. It's common to configure a call to a function in Javascript with a catch-all options object - for example jquery's Ajax call uses: $.ajax(settings); Where settings is just an object like: $.ajax({ url: '/blah', data: { stuff: 1 }, method: 'POST', // etc }); Although it's an implicit object, the properties follow a specific class. Typically when you have something like this that's important