UpdateAniChartHighlightsVariables is an interface that contains the variables that are required to update the AniChart highlights.

interface UpdateAniChartHighlightsVariables {
    highlights: {
        highlight: boolean;
        mediaId: number;
    };
}

Properties

Properties

highlights: {
    highlight: boolean;
    mediaId: number;
}

highlights is an object that contains the media ID and the highlight status.

Type declaration

  • highlight: boolean

    highlight is a boolean representing the highlight status.

  • mediaId: number

    mediaId is a number representing the media ID.