AniLink - v1.29.2
    Preparing search index...

    UpdateFavouriteOrderVariables is an interface that contains the variables that are required to update the order of the favourite anime/manga.

    interface UpdateFavouriteOrderVariables {
        animeIds: number[];
        animeOrder: number[];
        characterIds: number[];
        characterOrder: number[];
        mangaIds: number[];
        mangaOrder: number[];
        staffIds: number[];
        staffOrder: number[];
        studioIds: number[];
        studioOrder: number[];
    }
    Index
    animeIds: number[]

    animeIds is an array of numbers representing the ids of the anime to update the order of.

    animeOrder: number[]

    animeOrder is an array of numbers representing the order of the anime.

    characterIds: number[]

    characterIds is an array of numbers representing the ids of the characters to update the order of.

    characterOrder: number[]

    characterOrder is an array of numbers representing the order of the characters.

    mangaIds: number[]

    mangaIds is an array of numbers representing the ids of the manga to update the order of.

    mangaOrder: number[]

    mangaOrder is an array of numbers representing the order of the manga.

    staffIds: number[]

    staffIds is an array of numbers representing the ids of the staff to update the order of.

    staffOrder: number[]

    staffOrder is an array of numbers representing the order of the staff.

    studioIds: number[]

    studioIds is an array of numbers representing the ids of the studios to update the order of.

    studioOrder: number[]

    studioOrder is an array of numbers representing the order of the studios.