13

is there any way (native or extension) in VS Code to see class inheritance hierarchy of some class in Typescript?

Something like Type Hierarchy view for Java classes in Eclipse?

Type Hierarchy in Eclipse

Thanx

Tom HANAX
  • 402
  • 3
  • 17

1 Answers1

6

I don't know about Visual Studio extension, but if UML diagram is also an option, you can try

TypeScript UML Playground

Sample result of Raytracer program enter image description here

Matěj Pokorný
  • 16,977
  • 5
  • 39
  • 48
  • Thanx, looks interesting. It will be useful as VS Code extension, but considering "Work in progress" comment and having last change 2 years ago, this is probably dead path. – Tom HANAX Feb 08 '19 at 13:45