AniLink - v2.0.0
    Preparing search index...

    Interface MalAnime

    MalAnime is the typed portion of a MyAnimeList anime response returned by MalAnimeOperation.get and MyAnimeListAnimeApi.get.

    It always carries id and title; additional fields appear when requested via MalRequestOptions.fields and are exposed through the index signature without narrowing.

    interface MalAnime {
        id: number;
        main_picture?: MalPicture;
        title: string;
        [field: string]: unknown;
    }

    Indexable

    • [field: string]: unknown

      Additional fields requested by a caller remain available without narrowing.

    Index
    id: number

    The MyAnimeList numeric identifier.

    main_picture?: MalPicture

    Optional image variants requested through the fields query parameter.

    title: string

    The canonical MyAnimeList title.