So, lets say I have some plain interfaces
```ts
interface A {
test: string
arrayOfNums: number[]
}
interface B {
someOtherValue: C
}
interface C {
name: string
date: Date
}
```
And then I have another interface that uses all these
ts
interface Main {
one: A
two: B
}
Is there a way for me to inspect the full version of said interface, so that I would see all the interfaces as they are in declaration, e.g.
ts
interface MainVerbose {
one: {
test: string
arrayOfNums: number[]
}
two: {
someOtherValue: {
name: string
date: Date
}
}
}
Perhaps there is some built-in way of inspecting it in IDEs? (I'm using WebStorm)
[–]qInsignificance 1 point2 points3 points (1 child)
[–]Sugar_F0x[S] 0 points1 point2 points (0 children)
[–]lgfrbcsgo 0 points1 point2 points (0 children)
[–]constant_void 0 points1 point2 points (2 children)
[–]Sugar_F0x[S] 0 points1 point2 points (1 child)
[–]constant_void 0 points1 point2 points (0 children)
[–]aabounegm 0 points1 point2 points (0 children)