Interface IGenshinCharacterBase

Represents the base information of a Genshin Impact character.

interface IGenshinCharacterBase {
    element: string;
    icon: string;
    id: number;
    image: string;
    name: string;
    rarity: number;
}

Hierarchy (view full)

Properties

element: string

The element of the character.

icon: string

The URL of the character's icon.

id: number

The character ID.

image: string

The URL of the character's full image.

name: string

The name of the character.

rarity: number

The rarity of the character.