Interface IGenshinCharacterConstellation

Defines the shape of a Genshin Impact character constellation object.

interface IGenshinCharacterConstellation {
    effect: string;
    icon: string;
    id: number;
    is_actived: boolean;
    name: string;
    pos: number;
}

Properties

effect: string

The effect of the constellation.

icon: string

The icon of the constellation.

id: number

The unique identifier of the constellation.

is_actived: boolean

Whether the constellation is activated.

name: string

The name of the constellation.

pos: number

The position of the constellation.