Interface IGenshinCharacterSummary

Interface for a summary of Genshin Impact characters, containing only basic information and weapon type.

interface IGenshinCharacterSummary {
    avatars: (IGenshinCharacterBase & {
        weapon_type: number;
        weapon_type_name: string;
    })[];
}

Properties

Properties

avatars: (IGenshinCharacterBase & {
    weapon_type: number;
    weapon_type_name: string;
})[]

An array of characters, containing basic information and weapon type.