doorman
doorman

Reputation: 16949

TypeScript "Go to implementation" in VS

Is there a shortcut in Visual studio for Typescript to go to the implementation of an interface?

Thanks!

Upvotes: 2

Views: 488

Answers (2)

Indamix
Indamix

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

basarat
basarat

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

Related Questions