Interface AchievementSection

interface AchievementSection {
    groups: AchievementItemGroup[];
    info: {
        name: string;
        title: string;
    };
}

Properties

Properties

info: {
    name: string;
    title: string;
}