Title is an interface representing a title. It includes the romaji, english, native, and userPreferred each having their own properties.

interface Title {
    english: string;
    native: string;
    romaji: string;
    userPreferred: string;
}

Properties

english: string

english is a string representing the english of the title.

native: string

native is a string representing the native of the title.

romaji: string

romaji is a string representing the romaji of the title.

userPreferred: string

userPreferred is a string representing the user preferred of the title.