| 2 | import { PriorityQueue } from './PriorityQueue.ts'; |
| 3 | |
| 4 | interface QueueNode { |
| 5 | index: number; |
| 6 | cost: number; |
| 7 | path: ConvertPathNode[]; |
| 8 | visitedBorder: number; |
| 9 | }; |
| 10 | interface CategoryChangeCost { |
| 11 | from: string; |
| 12 | to: string; |
nothing calls this directly
no outgoing calls
no test coverage detected