In my experience, I've noticed that to see intellisense options for a TypeScript type in VS Code, you have to start typing the attribute name.
If you type "a", you'll only see options that contain "a" and nothing else.
Take a look at this screenshot example
This is helpful if you're familiar with the API and know what attributes are called.
But if you're new to the API and just want to see all the options, it would be nice to have a scrollable list of everything instead.
Although you can peek into the type definition file, it would be more convenient to view the options in the same place where you define the type properties.
Is there a way to do this without having to type a letter (which also limits the search)?