• Get detailed information about a specific MangaDex manga.

    Parameters

    • id: string

      The MangaDex manga ID.

    Returns Promise<null | MangaDexMangaDetail>

    Promise resolving to manga detail or null if not found.

    Use mangaDexClient.getMangaDetail() instead.

    export async function getMangaDexMangaDetail(
    id: string,
    ): Promise<MangaDexMangaDetail | null> {
    return mangaDexClient.getMangaDetail(id);
    }