| 9 | } |
| 10 | |
| 11 | export interface ShortestPathsApiResponse { |
| 12 | readonly paths: readonly number[][]; |
| 13 | readonly pages: Record<string, WikipediaPage>; |
| 14 | readonly sourcePageTitle: string; |
| 15 | readonly targetPageTitle: string; |
| 16 | readonly isSourceRedirected: boolean; |
| 17 | readonly isTargetRedirected: boolean; |
| 18 | } |
| 19 | |
| 20 | export interface ShortestPathsErrorResponse { |
| 21 | readonly error: string; |
nothing calls this directly
no outgoing calls
no test coverage detected