AniLink - v1.29.2
    Preparing search index...

    MediaListOptions is a type representing the media list options for a user. It includes fields for section order, split completed section by format, custom lists, advanced scoring, advanced scoring enabled, and theme.

    type MediaListOptions = {
        advancedScoring: string[];
        advancedScoringEnabled: boolean;
        customLists: string[];
        sectionOrder: string[];
        splitCompletedSectionByFormat: boolean;
        theme: string;
    }
    Index
    advancedScoring: string[]

    advancedScoring is an array of strings representing the advanced scoring options in the media list.

    advancedScoringEnabled: boolean

    advancedScoringEnabled is a boolean indicating whether advanced scoring is enabled.

    customLists: string[]

    customLists is an array of strings representing the custom lists in the media list.

    sectionOrder: string[]

    sectionOrder is an array of strings representing the order of sections in the media list.

    splitCompletedSectionByFormat: boolean

    splitCompletedSectionByFormat is a boolean indicating whether the completed section is split by format.

    theme: string

    theme is a string representing the theme of the media list.