| 1 | 'use strict'; |
| 2 | |
| 3 | interface OutdatedResponse { |
| 4 | outdated: 'minor' | null; |
| 5 | isFirstAuthor: boolean; |
| 6 | } |
| 7 | |
| 8 | const apiBasePath = (): string => { |
| 9 | if (typeof window === 'undefined') return '/'; |
nothing calls this directly
no outgoing calls
no test coverage detected