| 1 | export type WikipediaPageId = string; |
| 2 | |
| 3 | export interface WikipediaPage { |
| 4 | readonly id: WikipediaPageId; |
| 5 | readonly title: string; |
| 6 | readonly url: string; |
| 7 | readonly description?: string; |
| 8 | readonly thumbnailUrl?: string; |
| 9 | } |
| 10 | |
| 11 | export interface ShortestPathsApiResponse { |
| 12 | readonly paths: readonly number[][]; |
nothing calls this directly
no outgoing calls
no test coverage detected