| 14 | import { getServiceGuard } from '~/utils/service-guard'; |
| 15 | |
| 16 | interface TidalAuthResponse { |
| 17 | access_token: string; |
| 18 | token_type: string; |
| 19 | expires_in: number; |
| 20 | } |
| 21 | |
| 22 | interface TidalSearchResponse { |
| 23 | data: Array<{ |
nothing calls this directly
no outgoing calls
no test coverage detected