| 1 | const STORAGE_KEY = 'librosgratis-favorites'; |
| 2 | |
| 3 | export interface FavoritesAPI { |
| 4 | getFavorites: () => string[]; |
| 5 | toggleFavorite: (bookId: string) => boolean; |
| 6 | isFavorite: (bookId: string) => boolean; |
| 7 | } |
| 8 | |
| 9 | export function getFavorites(): string[] { |
| 10 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected