Reputation: 16949
Is there a shortcut in Visual studio for Typescript to go to the implementation of an interface?
Thanks!
Upvotes: 2
Views: 488
Reputation: 56
In Visual Studio you can right click 'Go to implementation' on the interface member and it will take you to the class member implementation.
Upvotes: 1
Reputation: 275867
No. But you can do "find all references" using Ctrl + K + R.
FYI, since interfaces aren't there at runtime I see little motivation for doing the traditional Implementation vs. Interface programming. It might be relevant in your use case though.
Upvotes: 2