export interface CharactersResponse { name: string; title: string; vision: string; nation: string; affiliation: string; rarity: number; constellation: string; birthday: string; description: string; skillTalents: SkillTalents[]; passiveTalents: PassiveTalents[]; vision_key: string; weapon_type: string; constellations: Constellations[]; } export interface SkillTalents { name: string; unlock: string; description: string; upgrades: Upgrades[]; type: string; } export interface PassiveTalents { name: string; unlock: string; description: string; level: number; } export interface Upgrades { name: string; value: string; } export interface Constellations { name: string; unlock: string; descritpion: string; level: number; } //# sourceMappingURL=CharactersResponse.d.ts.map