import api from "./client"; import type { Book, PaginatedResponse } from "@cloud-reader/shared"; export function searchBooks( query: string, ): Promise> { return api .get>("/api/books/", { params: { q: query }, }) .then((res) => res.data); }