(parentIds: number[], type: ts.Type)
| 18 | }; |
| 19 | |
| 20 | function getNextParentIds(parentIds: number[], type: ts.Type) { |
| 21 | // @ts-ignore |
| 22 | const id = type?.symbol?.id; |
| 23 | if (id) { |
| 24 | return [...parentIds, id]; |
| 25 | } |
| 26 | return parentIds; |
| 27 | } |
| 28 | |
| 29 | function getSymbolName(symbol: ts.Symbol) { |
| 30 | // @ts-ignore |
no outgoing calls
no test coverage detected
searching dependent graphs…