Reputation: 3147
When overriding TypeScript methods in WebStorm, IDE completes method with access modifier (public
, protected
or private
), return value type, parameters and parameter types:
VS Code only completes parameters:
Is there a way to make VS Code complete method overrides like WebStorm does?
Upvotes: 3
Views: 649
Reputation: 2667
This is not presently supported in VS Code.
There was a feature request for this: https://github.com/microsoft/vscode/issues/58193, but it was closed in favor of adding general snippet completion (https://github.com/microsoft/TypeScript/issues/25207) which is still in progress.
Upvotes: 2