Interfaces used by GotoHistory feature
| 8 | |
| 9 | /** Interfaces used by GotoHistory feature */ |
| 10 | interface GotoPosition { |
| 11 | filePath: string; |
| 12 | line: number; |
| 13 | col: number; |
| 14 | } |
| 15 | interface TabWithGotoPositions { |
| 16 | lastIndex?: number; |
| 17 | members: GotoPosition[]; |
nothing calls this directly
no outgoing calls
no test coverage detected